/* public/modules/config/style.css */

:root {
    --neon-cyan: #00f3ff; /* Cor tema da Config */
}

/* Fundo Tecnológico (Grid) */
.bg-tech {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0; pointer-events: none;
}
/* Luz de fundo */
.bg-glow {
    position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 60vw; height: 60vw;
    z-index: 0; pointer-events: none;
}

.config-container {
    position: relative; z-index: 2;
    max-width: 600px; margin: 0 auto;
    padding: 20px;
}

/* CARTÕES DE CONFIGURAÇÃO */
.config-card {
    background: rgba(20, 25, 40, 0.8);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 12px;
    padding: 20px; margin-bottom: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}
.config-card:hover { border-color: rgba(0, 243, 255, 0.5); }

.card-header {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}
.card-header h3 {
    margin: 0; font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem; color: var(--neon-cyan); text-transform: uppercase;
}

/* LINHAS DE OPÇÃO */
.config-row {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 15px;
}
.config-row label { font-size: 0.95rem; color: #ddd; }
.config-row small { display: block; font-size: 0.75rem; color: #888; margin-top: 2px; }

/* INPUTS CUSTOMIZADOS (Incluindo Select agora) */
.tech-input {
    background: rgba(0,0,0,0.3); border: 1px solid #444;
    color: var(--neon-cyan); padding: 8px 12px; border-radius: 6px;
    width: 80px; text-align: center; font-weight: bold; outline: none;
    transition: 0.3s;
    font-family: inherit; /* Para o select herdar a fonte */
}
.tech-input:focus { border-color: var(--neon-cyan); box-shadow: 0 0 10px rgba(0, 243, 255, 0.2); }

/* Para os Options dentro do Select ficarem legíveis */
.tech-input option {
    background-color: #1a1a2e;
    color: white;
}

/* SWITCH (CHECKBOX) MODERNO */
.switch { position: relative; display: inline-block; width: 50px; height: 26px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
    position: absolute; cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #333; transition: .4s; border-radius: 34px;
    border: 1px solid #555;
}
.slider:before {
    position: absolute; content: "";
    height: 18px; width: 18px; left: 3px; bottom: 3px;
    background-color: white; transition: .4s; border-radius: 50%;
}
input:checked + .slider { background-color: var(--neon-cyan); border-color: var(--neon-cyan); }
input:checked + .slider:before { transform: translateX(24px); background-color: #000; box-shadow: 0 0 5px white; }

/* RANGE SLIDER DE VOLUME */
.range-slider { -webkit-appearance: none; width: 100%; height: 6px; border-radius: 5px; background: #333; outline: none; }
.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--neon-cyan); cursor: pointer;
    box-shadow: 0 0 10px var(--neon-cyan);
}

/* BOTÃO FLUTUANTE DE SALVAR */
.fab-save {
    background: linear-gradient(135deg, var(--neon-cyan), #0088ff);
    color: #000; border: none;
    width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
    cursor: pointer; transition: 0.3s; z-index: 100;
    margin-right: 20px;
}
.fab-save:hover { transform: scale(1.1) rotate(90deg); color: white; }