/* Estilos para o Gerenciador de Temas */
.theme-color-group {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Switch verde para ativar/desativar temas */
.theme-switch {
    background-color: #6c757d;
    border-color: #6c757d;
}

.theme-switch:checked {
    background-color: #198754;
    border-color: #198754;
}

.theme-switch:focus {
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.theme-color-group h6 {
    color: #495057;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #dee2e6;
}

.theme-color-item {
    margin-bottom: 1rem;
}

.theme-color-item label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.25rem;
}

.theme-color-inputs {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.theme-color-inputs input[type="color"] {
    width: 60px;
    height: 38px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    cursor: pointer;
}

.theme-color-inputs input[type="text"] {
    flex: 1;
}

.theme-preview-box {
    width: 100%;
    height: 60px;
    border-radius: 4px;
    border: 1px solid #dee2e6;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #6c757d;
}

/* Indicador visual de tema modo noturno na listagem */
.dark-mode-theme-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 4px;
    color: #ffd700;
    font-size: 0.75rem;
}

.dark-mode-theme-indicator i {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    }
    50% {
        text-shadow: 0 0 15px rgba(255, 215, 0, 0.8), 0 0 25px rgba(255, 215, 0, 0.4);
    }
}

