/* Custom scrollbar for dark mode */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #212121;
}

::-webkit-scrollbar-thumb {
    background: #DB950C;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #08A67D;
}

/* Aulas Status */
.aulas-status {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #9ca3af;
}

.aulas-status.aulas-completas {
    color: #10b981;
    font-weight: 500;
}

.aulas-status .check-icon {
    font-size: 1.1rem;
    color: #10b981;
}

/* Header com Total */
.th-with-total {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.th-with-total .th-total {
    background: #374151;
    color: #e5e7eb;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 600;
}

.th-with-total.aulas-completas .th-total {
    background: #065f46;
    color: #10b981;
}

.th-with-total .check-icon {
    font-size: 1rem;
    color: #10b981;
}