/* assets/css/common.css */
:root {
    --jaleo-red: #E60000;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #000;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

.text-jaleo-red {
    color: var(--jaleo-red);
}

.bg-jaleo-red {
    background-color: var(--jaleo-red);
}

/* Noise Overlay */
.noise {
    position: fixed;
    inset: 0;
    z-index: 999;
    opacity: 0.02;
    pointer-events: none;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    background: #000;
}

.receipt-shadow {
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
}

.grid-bg {
    background-image: linear-gradient(#000 1px, transparent 1px), linear-gradient(90deg, #000 1px, transparent 1px);
    background-size: 80px 80px;
}