/* --- Global Styles & Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f8f9fa;
}

::-webkit-scrollbar-thumb {
    background: #ced4da;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #adb5bd;
}

body {
    background-color: #f8f9fa;
    font-family: sans-serif;
}

/* --- Print Styles for Invoice --- */
@media print {
    .print\:hidden {
        display: none !important;
    }
    
    body {
        background: white;
        margin: 0;
        padding: 0;
    }
    
    #invoice-print {
        box-shadow: none !important;
        border-radius: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
        max-height: 100% !important;
    }
    
    /* Ensure proper page breaks */
    .page-break {
        page-break-before: always;
    }
    
    /* Optimize colors for print */
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
}

/* --- Login Page Background --- */
.login-bg {
    background-color: #1a202c;
    background-image: radial-gradient(circle at 1px 1px, #374151 1px, transparent 0);
    background-size: 20px 20px;
}

