  
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
        
        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }

        .floating-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .food-item {
            position: absolute;
            opacity: 0.1;
            animation: float 8s ease-in-out infinite;
        }

        .food-item:nth-child(1) {
            top: 10%;
            left: 5%;
            animation: float 8s ease-in-out infinite, drift 20s linear infinite;
            animation-delay: 0s;
        }

        .food-item:nth-child(2) {
            top: 15%;
            right: 8%;
            animation: float 10s ease-in-out infinite, drift 25s linear infinite reverse;
            animation-delay: 1s;
        }

        .food-item:nth-child(3) {
            top: 40%;
            left: 3%;
            animation: float 9s ease-in-out infinite, drift 30s linear infinite;
            animation-delay: 2s;
        }

        .food-item:nth-child(4) {
            top: 65%;
            right: 5%;
            animation: float 11s ease-in-out infinite, drift 22s linear infinite reverse;
            animation-delay: 3s;
        }

        .food-item:nth-child(5) {
            top: 75%;
            left: 8%;
            animation: float 7s ease-in-out infinite, drift 28s linear infinite;
            animation-delay: 4s;
        }

        .food-item:nth-child(6) {
            top: 85%;
            right: 15%;
            animation: float 12s ease-in-out infinite, drift 18s linear infinite reverse;
            animation-delay: 5s;
        }

        .food-item:nth-child(7) {
            top: 30%;
            right: 25%;
            animation: float 9s ease-in-out infinite, drift 35s linear infinite;
            animation-delay: 6s;
        }

        .food-item:nth-child(8) {
            top: 55%;
            left: 15%;
            animation: float 10s ease-in-out infinite, drift 24s linear infinite reverse;
            animation-delay: 7s;
        }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg) scale(1); 
                opacity: 0.1;
            }
            25% {
                transform: translateY(-20px) rotate(3deg) scale(1.1);
                opacity: 0.15;
            }
            50% { 
                transform: translateY(-30px) rotate(-2deg) scale(1.05); 
                opacity: 0.2;
            }
            75% {
                transform: translateY(-15px) rotate(4deg) scale(1.08);
                opacity: 0.12;
            }
        }

        @keyframes drift {
            0% { transform: translateX(0px); }
            25% { transform: translateX(20px); }
            50% { transform: translateX(-10px); }
            75% { transform: translateX(15px); }
            100% { transform: translateX(0px); }
        }

        .menu-card {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .menu-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .meal-item {
            background: #ffffff;
            color: #1e293b;
            border-radius: 12px;
            padding: 16px;
            margin: 10px 0;
            transform: translateX(-100px);
            opacity: 0;
            animation: slideIn 0.6s ease forwards;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .meal-item:nth-child(1) { 
            animation-delay: 0.1s; 
            border-left: 4px solid #f59e0b; 
            background: linear-gradient(135deg, #fef3c7 0%, #ffffff 100%);
        }
        .meal-item:nth-child(2) { 
            animation-delay: 0.2s; 
            border-left: 4px solid #10b981; 
            background: linear-gradient(135deg, #d1fae5 0%, #ffffff 100%);
        }
        .meal-item:nth-child(3) { 
            animation-delay: 0.3s; 
            border-left: 4px solid #8b5cf6; 
            background: linear-gradient(135deg, #ede9fe 0%, #ffffff 100%);
        }
        .meal-item:nth-child(4) { 
            animation-delay: 0.4s; 
            border-left: 4px solid #3b82f6; 
            background: linear-gradient(135deg, #dbeafe 0%, #ffffff 100%);
        }

        /* Unique hover effects for each meal */
        .meal-item:nth-child(1):hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 12px 30px rgba(245, 158, 11, 0.3), 0 0 20px rgba(245, 158, 11, 0.1);
            border-left-color: #d97706;
            background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
        }

        .meal-item:nth-child(2):hover {
            transform: translateY(-6px) scale(1.01);
            box-shadow: 0 15px 35px rgba(16, 185, 129, 0.3), 0 0 25px rgba(16, 185, 129, 0.1);
            border-left-color: #059669;
            background: linear-gradient(135deg, #d1fae5 0%, #f0fdf4 100%);
        }

        .meal-item:nth-child(3):hover {
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 10px 28px rgba(139, 92, 246, 0.3), 0 0 22px rgba(139, 92, 246, 0.1);
            border-left-color: #7c3aed;
            background: linear-gradient(135deg, #ede9fe 0%, #faf5ff 100%);
            animation: gentleBounce 0.6s ease-out;
        }

        .meal-item:nth-child(4):hover {
            transform: translateY(-5px) scale(1.015);
            box-shadow: 0 14px 32px rgba(59, 130, 246, 0.3), 0 0 24px rgba(59, 130, 246, 0.1);
            border-left-color: #2563eb;
            background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
        }

        @keyframes gentleBounce {
            0%, 100% { transform: translateY(-3px) scale(1.03); }
            50% { transform: translateY(-5px) scale(1.035); }
        }

        @keyframes slideIn {
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .title {
            color: #ffffff;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            font-weight: 700;
        }

        .loading {
            display: inline-block;
            width: 40px;
            height: 40px;
            border: 4px solid rgba(30, 41, 59, 0.1);
            border-radius: 50%;
            border-top-color: #3b82f6;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .meal-icon {
            font-size: 1.3rem;
            margin-right: 10px;
            opacity: 0.8;
        }

        .refresh-btn {
            background: #3b82f6;
            transition: all 0.3s ease;
            border: none;
        }

        .refresh-btn:hover {
            background: #2563eb;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        }

        .date-display {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #1e293b;
            font-weight: 600;
        }

        /* Calendar Styles */
        .calendar-day {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 12px;
            font-weight: 500;
        }

        .calendar-day:hover {
            background: #f0fdf4;
            transform: scale(1.1);
        }

        .calendar-day.today {
            background: #3b82f6;
            color: white;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        }

        .calendar-day.selected {
            background: #22c55e;
            color: white;
            box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
        }

        .calendar-day.other-month {
            color: #d1d5db;
        }

        .calendar-day.has-menu {
            position: relative;
        }

        .calendar-day.has-menu::after {
            content: '';
            position: absolute;
            bottom: 2px;
            right: 2px;
            width: 6px;
            height: 6px;
            background: #f59e0b;
            border-radius: 50%;
        }

        @media (max-width: 768px) {
            .menu-card {
                margin: 20px;
            }
            
            .meal-item {
                padding: 15px;
                margin: 10px 0;
            }
        }
        