body {
  font-family: 'Poppins', sans-serif;
  background: #F8D7E8;
  margin: 0;
  padding: 0;
}

.header {
  background: #000;
  padding: 30px 0;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.logo-circle {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 50%;
  border: 3px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
}

.logo-circle img {
  width: 90%;
  height: auto;
  object-fit: contain;
}

h1 {
  text-align: center;
  font-weight: 600;
  margin-top: 15px;
  color: #000;
}

.card {
  background: #fff;
  margin: 20px;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

button {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  border-radius: 12px;
  border: none;
  background: #000;
  color: white;
  font-weight: 500;
  margin-top: 10px;
  transition: 0.2s;
}

button:hover { background: #333; }

.btn-secondary { background: #E91E63; }
.btn-secondary:hover { background: #C2185B; }

.btn-danger { background: #D32F2F; }
.btn-warning { background: #F57C00; }

input, textarea {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  border-radius: 12px;
  border: 1px solid #ccc;
  margin-top: 10px;
  box-sizing: border-box;
}

#horarios {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.hora-btn {
  background: #ffb6c1;
  color: #000;
  border: 2px solid #000;
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
  font-weight: 500;
}

.hora-btn:hover {
  background: #ff9db3;
}

.hora-btn.selected {
  background: #000;
  color: #fff;
  border: 2px solid #fff;
  transform: scale(1.05);
}

.turno-item {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.estado-pendiente { color: #F57C00; font-weight: 600; }
.estado-realizado { color: #4CAF50; font-weight: 600; }
.estado-cancelado { color: #D32F2F; font-weight: 600; }

#admin-panel { display: none; }

.btn-small {
  padding: 8px 12px;
  font-size: 13px;
  border-radius: 8px;
  margin-right: 5px;
  margin-top: 8px;
  background: #E91E63;
  color: #fff;
  border: none;
}

.btn-small:hover {
  background: #C2185B;
}

.btn-small.btn-danger {
  background: #D32F2F;
}

.btn-small.btn-danger:hover {
  background: #B71C1C;
}

.btn-small.btn-warning {
  background: #F57C00;
}

.btn-small.btn-warning:hover {
  background: #E65100;
}

#btn-admin {
  display: block;
}
#btn-admin {
  display: none;
}

#btn-clientes {
  display: none;
}
