/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    background-color: #f3f4f6; /* gray-100 */
}

/* Scrollbar Polish */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Glassmorphism Utilities */
.glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Premium Shadows */
.shadow-premium {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

/* Legacy RASBox Helpers (Moved from index.html) */
.rasbox-primary {
    color: #6A0404;
}

.rasbox-bg-primary {
    background-color: #6A0404;
}

.drag-over {
    border-color: #6A0404 !important;
    background-color: #FEF2F2 !important;
}

@media print {
    .no-print {
        display: none !important;
    }

    body {
        background: white;
    }

    .shadow-sm,
    .shadow,
    .shadow-lg,
    .glass {
        box-shadow: none !important;
        background: white !important;
    }
}
