/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #121212; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #dc2626; }

/* Tabela Sticky Header */
.table-container { overflow-x: auto; max-height: 75vh; }
thead th { position: sticky; top: 0; z-index: 10; background-color: #1e1e1e; }

/* Efeitos */
.glow-red { box-shadow: 0 0 15px rgba(220, 38, 38, 0.1); }
.tab-active { border-bottom: 2px solid #dc2626; color: #dc2626; }

/* Checkbox Customizado */
.nexus-checkbox {
    appearance: none;
    background-color: #121212;
    border: 1px solid #444;
    width: 16px; height: 16px;
    border-radius: 3px;
    display: inline-grid; place-content: center;
    cursor: pointer;
}
.nexus-checkbox::before {
    content: "";
    width: 10px; height: 10px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em white;
    transform-origin: center;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.nexus-checkbox:checked { background-color: #dc2626; border-color: #dc2626; }
.nexus-checkbox:checked::before { transform: scale(1); }

