.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

body {
    min-height: max(884px, 100dvh);
    font-family: 'Inter', sans-serif;
    background-color: #f7f9fe;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);

}

.v-watermark {
    font-size: 100vh;
    line-height: 1;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    font-weight: 800;
    color: rgba(0, 82, 255, 0.02);
    pointer-events: none;
    user-select: none;
    font-family: 'Manrope';
}

.receipt-cut {
    position: relative;
    background-color: white;
    /* Sesuaikan dengan bg-surface-container-lowest */
}

/* Efek gerigi di bagian atas */
.receipt-cut::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(-45deg, transparent 5px, white 5px),
        linear-gradient(45deg, transparent 5px, white 5px);
    background-size: 10px 10px;
    background-repeat: repeat-x;
}

/* Efek gerigi di bagian bawah */
.receipt-cut::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(-45deg, white 5px, transparent 5px),
        linear-gradient(45deg, white 5px, transparent 5px);
    background-size: 10px 10px;
    background-repeat: repeat-x;
}


/* Untuk menyembunyikan scrollbar tapi tetap bisa scroll */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.modal-container {
    overscroll-behavior: contain;
}