/* Formulario Consulta Médica - estilo igual al de Compras */

/* Fondo y fuente */
body {
  background-color: #fff9e6; /* amarillo pastel */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #5a5a3d;
  margin: 20px 0;
}

/* Navegación */
nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  background: #fff3b0; /* Amarillo pastel */
  border-radius: 10px;
  max-width: 1200px;
  margin: 0 auto 30px;
}

nav ul li {
  margin: 0 20px;
}

nav ul li a {
  text-decoration: none;
  color: #6b5e0e; /* Amarillo mostaza oscuro */
  font-weight: 600;
  padding: 12px 25px;
  display: block;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
  background: #ffed85; /* Amarillo pastel brillante */
  color: #4a4200; /* Mostaza oscuro */
}

/* Contenedores */
.container, .col-md-4, .col-md-8 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.col-md-4, .col-md-8 {
  background-color: #fffdf2;
  box-shadow: 0 4px 12px rgba(255, 237, 110, 0.25);
  border-radius: 12px;
  padding: 30px 35px;
  margin-bottom: 30px;
}

/* Responsive layout */
@media (min-width: 992px) {
  .row {
    display: flex;
    justify-content: space-between;
  }
  .col-md-4 {
    max-width: 400px;
    margin-right: 30px;
  }
  .col-md-8 {
    max-width: 700px;
  }
}

/* Títulos */
h1, h3 {
  color: #d9ba41;
  font-weight: 700;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
}

/* Etiquetas */
.form-group label {
  font-weight: 600;
  color: #857e29;
}

/* Inputs */
.form-control {
  border-radius: 10px;
  border: 1.8px solid #d9ba41;
  padding: 12px 18px;
  font-size: 1rem;
  background-color: #fffbe6;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #ffea50;
  box-shadow: 0 0 7px #ffea5088;
  outline: none;
}

/* Botones */
.btn-primary {
  background-color: #ffea50;
  border: none;
  color: #6b5e0e;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 14px rgba(255, 234, 80, 0.7);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary:hover {
  background-color: #d9ba41;
  color: white;
  box-shadow: 0 7px 18px rgba(217, 186, 65, 0.9);
}

/* Lista de consultas */
#employees-list {
  margin-top: 20px;
}

.list-group-item {
  border-radius: 12px;
  margin-bottom: 14px;
  background-color: #fff9cc;
  color: #4a4400;
  cursor: pointer;
  padding: 20px;
  transition: background-color 0.3s ease;
}

.list-group-item:hover, .list-group-item.active {
  background-color: #fff373;
  color: #6b5e0e;
  font-weight: 700;
}

/* Imagen */
img {
  max-width: 100%;
  margin-bottom: 22px;
  border-radius: 10px;
}
