/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #090d16;
}

::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #334155;
}

/* Number input spinners hiding for clean monetary grid */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}
input[type=number] {
    -moz-appearance: textfield;
}

/* Print Stylesheet Adjustments */
@media print {
    body {
        background-color: #ffffff !important;
        color: #000000 !important;
    }
    .print\:hidden {
        display: none !important;
    }
    .print\:bg-white {
        background-color: #ffffff !important;
    }
    .print\:text-black {
        color: #000000 !important;
    }
    .print\:border-none {
        border: none !important;
    }
    .print\:shadow-none {
        box-shadow: none !important;
    }
}
