/*
 * Archivo: css/estilos.css
 * Descripción: Estilos personalizados para el portal de pagos FACSO
 */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

h2, h4 {
  color: #004b93;
}

.navbar {
  background-color: #004b93 !important;
}

.list-group-item.active {
  background-color: #004b93;
  border-color: #004b93;
}

input[type="text"], select {
  border-radius: 4px;
  border: 1px solid #ced4da;
}

#btn-consultar {
  min-width: 120px;
}

.alert {
  margin-top: 10px;
}

footer {
  font-size: 0.9rem;
  color: #666;
}

footer img {
  height: 40px;
}

/* Ajustes para modo responsive */
@media (max-width: 768px) {
  .input-group {
    flex-direction: column;
    gap: 10px;
  }

  .input-group > * {
    width: 100% !important;
  }
}
