@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;700&display=swap');

:root {
    --momo-dark: #0f172a;    /* Deep Navy from kiosk header */
    --momo-cyan: #22d3ee;    /* Cyan from "Cart" logo text */
    --momo-yellow: #fde047;  /* Yellow from "MOMO" logo text */
    --momo-green: #10b981;   /* Emerald for success actions */
    --momo-bg: #f8fafc;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--momo-bg);
    color: var(--momo-dark);
    margin: 0;
}

.title-font {
    font-family: 'Space Grotesk', sans-serif;
}

/* Glassmorphism Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(15, 23, 42, 0.05);
}

/* Responsive Table Container */
.table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

/* Modal Styling */
dialog::backdrop {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
}

dialog {
    border: none;
    outline: none;
    animation: modalPop 0.3s ease-out;
}

@keyframes modalPop {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.btn-gradient {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    transition: all 0.2s ease;
}

.btn-gradient:active {
    transform: scale(0.96);
}