/* ===== Indicador de progreso de carga ===== */
#progreso-carga {
  margin-top: 6px;
  font-size: 0.8rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 6px;
}

.progreso-spinner {
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 2px solid #ccc;
  border-top-color: #0b5fff;
  border-radius: 50%;
  animation: girar 0.8s linear infinite;
}

@keyframes girar {
  to { transform: rotate(360deg); }
}

.progreso-check {
  color: #1a9c4b;
  font-weight: 700;
}

/* ===== Sección "Sobre el explorador" ===== */
.info-explorador {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 24px;
}

.info-explorador h2 {
  margin-bottom: 8px;
}

.info-explorador p {
  color: #444;
  line-height: 1.5;
}

.info-datasets-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 0.85rem;
}

.info-datasets-table th,
.info-datasets-table td {
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid #e2e2e2;
}

.info-datasets-table th {
  background: #f5f7fb;
  color: #333;
}

.info-datasets-table a {
  color: #0b5fff;
  text-decoration: none;
}

.info-datasets-table a:hover {
  text-decoration: underline;
}

@media (max-width: 700px) {
  .info-datasets-table {
    font-size: 0.78rem;
  }
  .info-datasets-table th,
  .info-datasets-table td {
    padding: 6px;
  }
}
