/* Customizações Gerais */
body {
    background-color: #0d1117; 
}

/* Scrollbars customizadas */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #121212; 
}
::-webkit-scrollbar-thumb {
    background: #495057; 
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #6c757d; 
}

/* Utilitários Extras */
.cursor-pointer {
    cursor: pointer;
}

/* Efeito Tally No Ar */
.animate-pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Efeito Push To Talk - Intercom */
.comm-btn {
    transition: all 0.1s ease-in-out;
}

.comm-btn:active {
    transform: scale(0.95);
    background-color: #ffc107 !important;
    color: #000 !important;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.6);
}

.btn-outline-danger.comm-btn:active {
    background-color: #dc3545 !important;
    color: #fff !important;
    box-shadow: 0 0 15px rgba(220, 53, 69, 0.6);
}

/* Lista de Banco */
.list-group-item {
    transition: background-color 0.2s ease-in-out;
}
.list-group-item:hover {
    background-color: #2b3035 !important;
}

/* Efeito de botão travado (Latch) */
.locked-active {
    background-color: #ffc107 !important;
    color: #000 !important;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.6);
    border-color: #ffc107 !important;
}

.locked-active-danger {
    background-color: #dc3545 !important;
    color: #fff !important;
    box-shadow: 0 0 15px rgba(220, 53, 69, 0.6);
    border-color: #dc3545 !important;
}