/* Botón de cambio de tema */
.theme-toggle {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem;
    border-radius: 20px !important;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px);
}

/* 🌞 Estilo general (PC / pantallas grandes) */
#theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 0.5rem 0.75rem;
  border-radius: 25px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

#theme-icon {
  font-size: 1.2rem;
  display: inline-block;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

#theme-toggle:active #theme-icon {
  opacity: 0.5;
}

[data-theme="dark"] #theme-icon {
  transform: rotate(180deg);
}

#theme-text {
    display: inline;
}

#theme-icon {
    display: inline;
}