@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

/* Themed Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #082e49; /* brand-950 background */
}
::-webkit-scrollbar-thumb {
    background: #e28f1f; /* accent-500 thumb */
    border-radius: 5px;
    border: 2px solid #082e49;
}
::-webkit-scrollbar-thumb:hover {
    background: #c77216; /* accent-600 */
}

/* Smooth Interactive Elements */
input, select, textarea {
    transition: all 0.2s ease-in-out;
}
input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 0 4px rgba(226, 143, 31, 0.15); /* Glowing accent outline */
}

/* Print Styling for Receipts */
@media print {
    body * {
        visibility: hidden;
    }
    #printReceiptArea, #printReceiptArea * {
        visibility: visible;
    }
    #printReceiptArea {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        margin: 0;
        padding: 20px;
        box-shadow: none;
        background: white !important;
        color: text-slate-800 !important;
    }
    .no-print {
        display: none !important;
    }
}
