:root {
    /* Default Neon Purple from sweeteye.art (Superadmin & Login) */
    --color-primary: #BF24FF;
    --color-primary-hover: #9c15d4;
}

body {
    background-image: radial-gradient(circle at 50% 0%, #1f112e 0%, #0a0a0a 40%);
    background-attachment: fixed;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a; 
}
::-webkit-scrollbar-thumb {
    background: #262626; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary); 
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

/* Glassmorphism utility */
.glass {
    background: rgba(23, 23, 23, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Invoice Print Styles */
@media print {
    body {
        background: white !important;
        color: black !important;
    }
    .no-print {
        display: none !important;
    }
    .print-only {
        display: block !important;
    }
    .invoice-watermark {
        position: fixed;
        bottom: 20px;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 12px;
        color: #999;
        font-family: 'Inter', sans-serif;
        opacity: 0.8;
    }
}
