/* Estilo general del bloque desplegable */
.toggle-container {
  width: 100%;
  text-align: center;
  margin: 20px 0;
}

.toggle-header {
  cursor: pointer;
  color: #e2000f;
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.toggle-header:hover {
  color: #ff4a4a;
}

.toggle-content {
  display: none;
  justify-content: center;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.gri {
  margin: 0 auto;
  border-collapse: collapse;
  width: 90%;
  background: #fff;
  border: 2px solid #e2000f;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
}

.gri tr {
  border-bottom: 1px solid #eee;
}

.gri td {
  padding: 10px 15px;
  font-size: 14px;
  color: #333;
  text-align: left;
}

.gri a {
  color: #e2000f;
  text-decoration: none;
  font-weight: bold;
}

.gri a:hover {
  text-decoration: underline;
}
/* Estilos responsivos para pantallas pequeñas */
@media screen and (max-width: 600px) {
  .gri td {
    font-size: 13px; /* Reducido en móviles */
    padding: 8px 10px;
  }

  .toggle-header {
    font-size: 12px; /* También reducido */
  }
}