/* =========================================
   DUALSCREEN.CSS - Layout para 2 Telas
   ========================================= */

/* Painel de Controle (Onde digita o canal) */
.control-panel { 
    background: #10161a; 
    padding: 15px; 
    border: 1px solid var(--line); 
    border-radius: 4px; 
    margin-bottom: 20px; 
    display: flex; 
    flex-wrap: wrap; 
    gap: 20px; 
    justify-content: center; 
    align-items: center; 
}

.control-group { 
    display: flex; 
    gap: 10px; 
    align-items: center; 
}

.slot-label { 
    font-weight: bold; 
    color: var(--gold2); 
    text-transform: uppercase; 
    font-size: 12px; 
}

/* Inputs e Selects */
.custom-select, .custom-input { 
    background: #000; 
    border: 1px solid var(--line); 
    color: var(--text); 
    padding: 8px; 
    border-radius: 4px; 
    font-family: inherit; 
    outline: none;
    transition: border-color 0.3s;
}

.custom-select:focus, .custom-input:focus {
    border-color: var(--gold);
}

/* Boto Carregar */
.btn-go { 
    background: var(--gold); 
    color: #000; 
    border: none; 
    padding: 8px 15px; 
    border-radius: 4px; 
    font-weight: bold; 
    cursor: pointer; 
    transition: 0.2s; 
}

.btn-go:hover { 
    transform: scale(1.05); 
    filter: brightness(1.2); 
}

/* Separador vertical entre os controles */
.control-separator {
    width: 1px; 
    height: 30px; 
    background: var(--line); 
    display: inline-block;
}

/* --- GRID DAS TELAS --- */
.dual-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 15px; 
    width: 100%; 
}

.stream-column { 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
    position: relative; 
}

/* Alturas dos Players e Chats */
.video-container { height: 400px; }
.chat-container { height: 500px; } 

/* Responsividade (Mobile fica um embaixo do outro) */
@media (max-width: 900px) { 
    .dual-grid { grid-template-columns: 1fr; } 
    .video-container { height: 250px; } 
    .chat-container { height: 400px; } 
    .control-separator { display: none; } /* Esconde o risco separador no mobile */
    .control-panel { flex-direction: column; align-items: stretch; }
    .control-group { flex-direction: column; align-items: stretch; }
    .btn-go { width: 100%; }
}