html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  color: #1e293b;
}

/* Contenedor principal a ancho completo */
.full-container {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Botones con micro-animación */
.btn-ciencias {
  transition: all 0.2s ease;
}
.btn-ciencias:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Badge de sección (letras A-F) */
.section-badge {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: bold;
  color: white;
}

/* Ocultar vistas */
.hidden {
  display: none;
}

/* Cabeceras de tabla ordenables */
th {
  cursor: pointer;
  user-select: none;
}
th:hover {
  background-color: #f1f5f9;
}

/* Icono de ordenamiento */
.sort-icon {
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.2s;
}

/* Dropdown de filtros */
#dropdown-menu {
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  z-index: 50;
}

/* Checkbox seleccionado: resaltar label */
.checkbox-custom:checked + span {
  color: #2563eb;
  font-weight: 600;
}

/* Logo con tamaño mínimo como fallback */
#main-logo {
  min-height: 120px;
  min-width: 100px;
  object-fit: contain;
}
