/* ========================= */
/* ESTILO GENERAL */
/* ========================= */

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(180deg, #E1F5FE 0%, #FFFFFF 40%, #E3F2FD 100%);
  margin: 0;
  padding: 0;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* HEADER + LOGO */
.header {
  width: 100%;
  text-align: center;
  padding: 0px 0 0 0; /* menos espacio arriba */
}

.logo-circle {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0px; /* acerca el logo a los botones */
}

.logo-circle img {
  width: 320px; /* tamaño grande premium */
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.18)); /* sombra más elegante */
}


/* ========================= */
/* TARJETAS (GLASS STYLE) */
/* ========================= */

.card {
  background: rgba(255, 255, 255, 0.75);
  padding: 25px;
  margin-top: 20px;
  width: 90%;
  max-width: 420px;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
  backdrop-filter: blur(10px);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.6);
}

/* ========================= */
/* TITULOS */
/* ========================= */

.card h2,
.card h3,
.titulo-seccion {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #0288D1;
}

/* ========================= */
/* BOTONES GRANDES */
/* ========================= */

button {
  width: 100%;
  padding: 14px;
  margin: 12px 0;
  border: none;
  border-radius: 14px;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

button:active {
  transform: scale(0.97);
}

.btn-secondary {
  background-color: #4FC3F7 !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(79, 195, 247, 0.45) !important;
}

.btn-secondary:hover {
  background-color: #039BE5 !important;
}

.btn-warning {
  background-color: #4FC3F7 !important;
  color: white !important;
}

.btn-warning:hover {
  background-color: #0288D1 !important;
}

.btn-danger {
  background-color: #b84f7f;
  color: white;
}

.btn-danger:hover {
  background-color: #a0406f;
}

/* ========================= */
/* BOTONES PEQUEÑOS */
/* ========================= */

.btn-small {
  padding: 8px 12px !important;
  font-size: 13px !important;
  border-radius: 10px;
  margin-right: 6px;
  margin-top: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  background-color: #4FC3F7 !important;
  color: white !important;
}

.btn-small:hover {
  background-color: #039BE5 !important;
}

.btn-edit {
  background-color: #4FC3F7 !important;
  color: white !important;
}

.btn-edit:hover {
  background-color: #039BE5 !important;
}

.btn-realizado {
  background-color: #039BE5 !important;
  color: white !important;
}

.btn-realizado:hover {
  background-color: #0288D1 !important;
}

/* ========================= */
/* INPUTS */
/* ========================= */

input, select, textarea {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 16px;
  box-sizing: border-box;
  transition: 0.2s ease;
  background: rgba(255,255,255,0.85);
}

input:focus, textarea:focus {
  border-color: #4FC3F7;
  box-shadow: 0 0 6px rgba(79, 195, 247, 0.4);
  outline: none;
}

/* ========================= */
/* HORARIOS */
/* ========================= */

#horarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 15px;
}

.hora-btn {
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: 0.25s ease;
  font-size: 15px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  background: white;
}

.hora-btn.selected {
  background: #0288D1 !important;
  color: #fff !important;
  border: 2px solid #fff;
  transform: scale(1.05);
}

/* ========================= */
/* LISTAS */
/* ========================= */

.cliente-item,
.turno-item {
  background-color: rgba(255,255,255,0.85);
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.cliente-item:hover,
.turno-item:hover {
  background-color: #E1F5FE;
}

/* ========================= */
/* SCROLL */
/* ========================= */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: #90CAF9;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #64B5F6;
}