/* Custom styles for Toko Kue Betawi Mpo Yati */

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

@keyframes popIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

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

.animate-pop-in {
    animation: popIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Thermal Printer Receipt Stylesheet (@media print) */
@media print {
    body * {
        visibility: hidden;
    }
    #receipt-area, #receipt-area * {
        visibility: visible;
    }
    #receipt-area {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        max-width: 80mm;
        margin: 0;
        padding: 5px;
        font-family: 'Courier New', Courier, monospace;
        font-size: 11px;
        color: #000;
        background: #fff;
    }
    .no-print {
        display: none !important;
    }
}
