.view { animation: fadeIn 0.3s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

.meal-btn.active {
    border-color: #10b981 !important;
    background-color: rgba(16, 185, 129, 0.1);
    color: #34d399;
}

.hidden { display: none !important; }
.print-only { display: none !important; }

.login-trigger-area {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    z-index: 100;
}

.modal-overlay {
    animation: fadeIn 0.2s ease-out forwards;
}

.modal-anim {
    animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@media print {
    @page { margin: 0.8cm; size: A4 portrait; }
    .no-print { display: none !important; }
    .nav-buttons, button { display: none !important; }
    .print-only { display: block !important; }
    body { background: white !important; color: black !important; font-family: "Arial Narrow", Arial, sans-serif; margin: 0; padding: 0; }
    .header-print { text-align: center; border: 2px solid black; padding: 6px; margin-bottom: 2px; }
    .header-print h2 { margin: 0; font-size: 13px; font-weight: 900; text-transform: uppercase; }
    .header-print h3 { margin: 0; font-size: 11px; margin-top: 3px; font-weight: bold; }
    .p-box-head { width: 18px; height: 100%; border-left: 1px solid black; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 10px; }
}