/* Custom scrollbar for deep space aesthetic */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #09090b;
}

::-webkit-scrollbar-thumb {
    background: #3f3f46;
    border-radius: 4px;
    border: 1px solid #18181b;
}

::-webkit-scrollbar-thumb:hover {
    background: #52525b;
}

/* Ensures dropdown options follow dark mode natively where supported */
select {
    color-scheme: dark;
}

/* Print adjustments to keep theme intact */
@media print {
    body {
        height: auto !important;
        overflow: visible !important;
        background-color: #09090b !important;
    }

    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    @page {
        margin: 1cm;
        size: portrait;
    }
}
