:root {
            --primary-blue: #1e3a8a;
            --light-blue: #3b82f6;
            --sea-blue: #3b82f6;
            --hospital-green: #08c4ca;
            --light-green: #08c4ca;
            --dark-green: #08c4ca;
            --background: #f8fafc;
            --white: #ffffff;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-600: #475569;
            --gray-800: #1e293b;
        }
        
        body {
            background-color: var(--background);
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
        }
        
        .header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--sea-blue) 100%);
            color: white;
            padding: 1.5rem 0;
            box-shadow: 0 4px 20px rgba(30, 58, 138, 0.15);
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 600;
            margin: 0 0.5rem;
            padding: 0.75rem 1rem !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            font-size:1.3rem;
            display: flex;
         align-items: center;
        }
        
        .navbar-nav .nav-link i {
            margin-right: 0.5rem;
            font-size: 1.5rem;
        }

            .nav-icon-3d {
        display: inline-flex;
        margin-right: 0.75rem;
        filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.3));
        animation: navIconFloat 4s ease-in-out infinite;
        transform-style: preserve-3d;
        transform: translateZ(5px);
    }

    .nav-icon-3d:hover {
        color:var(--sea-blue);
    }
     @keyframes navIconFloat {
        0%, 100% { transform: translateY(0) translateZ(5px); }
        50% { transform: translateY(-3px) translateZ(10px); }
    }

     .navbar-nav .nav-link:hover .nav-icon-3d {
        animation: navIconHover 1s ease-in-out infinite;
        color:var(--sea-blue) !important;
    }
    
    @keyframes navIconHover {
        0%, 100% { transform: translateY(-2px) translateZ(10px) rotate(0deg); }
        50% { transform: translateY(-4px) translateZ(15px) rotate(5deg); ; }
    }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--hospital-green);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
            color:var(--sea-blue);
        }
        
        .navbar-nav .nav-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }
        
        .main-content {
            background: var(--white);
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            padding: 2rem;
            margin-bottom: 2rem;
        }
        
        .widget {
            background: var(--white);
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border: 1px solid var(--gray-200);
        }
        
        .hero-carousel .item {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--sea-blue) 100%);
            color: white;
            padding: 4rem 2.5rem;
            border-radius: 16px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-carousel .item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }
        
        .hero-carousel .item > * {
            position: relative;
            z-index: 2;
        }
        
        .hero-carousel .item h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .hero-carousel .item p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }
        
        .quick-access-carousel .item {
            padding: 0 8px;
        }
        
        .quick-access-btn {
            width: 100%;
            height: 140px;
            border-radius: 16px;
            border: none;
            color: white;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .quick-access-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }
        
        .quick-access-btn:hover::before {
            left: 100%;
        }
        
        .quick-access-btn:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        }
        
        .btn-personel { background: linear-gradient(135deg, var(--sea-blue), var(--dark-green));  }
        .btn-takvim { background: linear-gradient(135deg, var(--sea-blue), var(--dark-green));  }
        .btn-belgeler { background: linear-gradient(135deg, var(--sea-blue), var(--dark-green));  }
        .btn-raporlar { background: linear-gradient(135deg, var(--sea-blue), var(--dark-green)); }
        .btn-mesajlar { background: linear-gradient(135deg, var(--sea-blue), var(--dark-green));  }
        .btn-saglik { background: linear-gradient(135deg, var(--sea-blue), var(--dark-green));  }
        
        .news-item {
            border-left: 4px solid var(--light-blue);
            padding: 1.25rem;
            margin-bottom: 1rem;
            background: var(--gray-100);
            border-radius: 0 12px 12px 0;
            transition: all 0.3s ease;
        }
        
        .news-item:hover {
            transform: translateX(4px);
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
        }
        
        .priority-high { border-left-color: #ef4444; }
        .priority-medium { border-left-color: #f59e0b; }
        .priority-low { border-left-color: var(--hospital-green); }
        
        .doctor-item {
            display: flex;
            align-items: center;
            padding: 1rem;
            border-bottom: 1px solid var(--gray-200);
            transition: all 0.3s ease;
            border-radius: 8px;
            margin-bottom: 0.5rem;
        }
        
        .doctor-item:hover {
            background: var(--gray-100);
            transform: translateX(4px);
        }
        
        .doctor-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--light-blue), var(--sea-blue));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 1.2rem;
        }
        
        .status-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin-left: auto;
            box-shadow: 0 0 0 2px white;
        }

        .anket-sure {
            font-size:1.4rem;
        }
        
        .status-available { background: var(--hospital-green); }
        .status-busy { background: #ef4444; }
        .status-away { background: #f59e0b; }
        
        .calendar-btn {
            background: linear-gradient(135deg, var(--hospital-green), var(--light-green));
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .calendar-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
        }
        
        .owl-nav {
            text-align: center;
            margin-top: 1.5rem;
        }

        .hero-carousel .owl-dots {
            background-color:#040b223a;
            margin-top:-2.75vh !important;
            position:absolute;
            left:0;
            width: 100%;
            border-bottom-right-radius: 3em;
            border-bottom-left-radius: 3em;
        }
        
        .owl-nav button {
            background: linear-gradient(135deg, var(--light-blue), var(--sea-blue)) !important;
            color: white !important;
            border-radius: 50% !important;
            width: 48px !important;
            height: 48px !important;
            margin: 0 8px !important;
            font-size: 18px !important;
            border: none !important;
            transition: all 0.3s ease !important;
        }
        
        .owl-nav button:hover {
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue)) !important;
            transform: scale(1.1);
        }
        
        .owl-dots {
            text-align: center;
            margin-top: 1rem;
        }
        
        .owl-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--gray-200);
            margin: 0 6px;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .owl-dot.active {
            background: var(--light-blue);
            transform: scale(1.2);
        }
        
        .footer {
            background: linear-gradient(135deg, var(--gray-800) 0%, var(--primary-blue) 100%);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        
        .footer h5 {
            color: var(--hospital-green);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        
        .footer a {
            color: #cbd5e1;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .footer a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--hospital-green);
            transition: width 0.3s ease;
        }
        
        .footer a:hover {
            color: var(--hospital-green);
        }
        
        .footer a:hover::after {
            width: 100%;
        }
        
        .footer-bottom {
            border-top: 1px solid #475569;
            padding-top: 1.5rem;
            margin-top: 2rem;
            text-align: center;
            color: #94a3b8;
        }
        
        .btn-outline-primary {
            border-color: var(--light-blue);
            color: var(--light-blue);
        }
        
        .btn-outline-primary:hover {
            background: var(--light-blue);
            border-color: var(--light-blue);
        }
        
        .btn-outline-success {
            border-color: var(--hospital-green);
            color: var(--hospital-green);
        }
        
        .btn-outline-success:hover {
            background: var(--hospital-green);
            border-color: var(--hospital-green);
        }
        
        .badge.bg-danger { background: #ef4444 !important; }
        .badge.bg-warning { background: #f59e0b !important; }
        
        @media (max-width: 768px) {
            .hero-carousel .item {
                padding: 2.5rem 1.5rem;
            }
            
            .hero-carousel .item h2 {
                font-size: 2rem;
            }
            
            .quick-access-btn {
                height: 120px;
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
            }
        }

        .survey-widget {
    background: linear-gradient(135deg, #f7e7ee0f 0%, #a9b4fd 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.survey-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--hospital-green), var(--light-blue));
}

.survey-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.survey-icon {
    margin-right: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.survey-title {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.survey-description {
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.5;
}

.survey-stats {
    margin-bottom: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}

.stat-icon {
    margin-right: 1rem;
    padding: 8px;
    background: #f1f5f9;
    border-radius: 8px;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.survey-footer {
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.survey-creator {
    display: flex;
    align-items: center;
}

.creator-icon {
    margin-right: 0.5rem;
    padding: 4px;
    background: #f1f5f9;
    border-radius: 6px;
}

.survey-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.survey-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}
.doctor-carousel .item {
    padding: 0 5px;
}

.doctor-card {
    background: white;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.doctor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--light-blue), var(--hospital-green));
}

.doctor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.doctor-avatar-3d {
    margin-bottom: 0.75rem;
    animation: doctorFloat 4s ease-in-out infinite;
}

@keyframes doctorFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(2deg); }
}

.doctor-info h6 {
    color: var(--primary-blue);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.doctor-info small {
    display: block;
    margin-bottom: 0.5rem;
}

.doctor-schedule {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.schedule-time {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--hospital-green);
    background: rgba(8, 196, 202, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    display: inline-block;
}

.schedule-location {
    font-size: 0.7rem;
    color: var(--gray-600);
    font-weight: 500;
}

.status-indicator-3d {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.3);
    border: 2px solid white;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.status-indicator-3d.status-available { 
    background: radial-gradient(circle, var(--hospital-green), #059669);
}

.status-indicator-3d.status-busy { 
    background: radial-gradient(circle, #ef4444, #dc2626);
}

.status-indicator-3d.status-away { 
    background: radial-gradient(circle, #f59e0b, #d97706);
}

.schedule-items-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.schedule-icon-3d {
    display: inline-flex;
    filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.2));
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

.schedule-date {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    display: inline-block;
}

.schedule-time {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--hospital-green);
    background: rgba(8, 196, 202, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    display: inline-block;
}

.location-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.schedule-location {
    font-size: 0.7rem;
    color: var(--gray-600);
    font-weight: 500;
    text-align: right;
}

.doctor-carousel .owl-stage-outer {
    padding-top:1.5rem;
    padding-bottom:1.5rem;
}

.btn-login-3d {
        background: linear-gradient(135deg, #5df0f0 0%, #016c8d 100%);
        color: white;
        border: none;
        border-radius: 10px;
        padding: 0.6rem 1.5rem;
        font-weight: 700;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(30, 64, 175, 0.4),
                    0 2px 4px rgba(0, 0, 0, 0.2),
                    inset 0 1px 1px rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        transform-style: preserve-3d;
        transform: perspective(800px) translateZ(0);
        min-width: 120px;
        text-transform: uppercase;
    }
    
    .btn-login-3d:hover {
        transform: perspective(800px) translateY(-2px) translateZ(10px);
        box-shadow: 0 8px 25px rgba(30, 64, 175, 0.5),
                    0 4px 8px rgba(0, 0, 0, 0.3),
                    inset 0 1px 1px rgba(255, 255, 255, 0.2);
    }
    
    .btn-login-3d:active {
        transform: perspective(800px) translateY(1px) translateZ(5px);
        box-shadow: 0 2px 8px rgba(30, 64, 175, 0.4),
                    0 1px 2px rgba(0, 0, 0, 0.2),
                    inset 0 1px 1px rgba(255, 255, 255, 0.1);
    }
    
    .btn-login-3d .icon-3d {
        display: inline-flex;
        margin-right: 0.5rem;
        filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.3));
        animation: loginIconFloat 3s ease-in-out infinite;
        transform-style: preserve-3d;
        transform: translateZ(5px);
    }
    
    @keyframes loginIconFloat {
        0%, 100% { transform: translateY(0) translateZ(5px) rotate(0deg); }
        50% { transform: translateY(-3px) translateZ(10px) rotate(5deg); }
    }
    
    .btn-login-3d::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 60%);
        transform: rotate(30deg);
        transition: all 0.3s ease;
        opacity: 0;
    }
    
    .btn-login-3d:hover::before {
        opacity: 1;
        animation: shineEffect 2s infinite;
    }
    
    @keyframes shineEffect {
        0% { transform: rotate(30deg) translateX(-100%); }
        100% { transform: rotate(30deg) translateX(100%); }
    }


/* Minimalist Destek Stilleri */
.support-row {
    display: block;
    gap: 1rem;
    align-items: center;
    justify-content: space-around;
    padding: 0.5rem 0;
    float:left;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    justify-content: left;
    min-height: 50px;
    float:left;
    margin:0.5em;
    width: 100%;
}

.support-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-color: rgba(59, 130, 246, 0.2);
}

.support-icon-mini {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    animation: miniIconFloat 3s ease-in-out infinite;
    margin:0.5em;
}

@keyframes miniIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

.support-item:hover .support-icon-mini {
    animation: miniIconHover 1s ease-in-out infinite;
}

@keyframes miniIconHover {
    0%, 100% { transform: translateY(-1px) scale(1); }
    50% { transform: translateY(-3px) scale(1.05); }
}

.support-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
    white-space: nowrap;
}

.support-text-container {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.meal-date {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.meal-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #f59e0b;
    line-height: 1.2;
}

.support-item:first-child .support-text {
    color: var(--light-blue);
}

.support-item:nth-child(2) .support-text {
    color: var(--hospital-green);
}

.support-item:nth-child(3) {
    align-items: flex-start;
    padding: 1rem;
}

.support-item:nth-child(3) .support-icon-mini {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.support-item:nth-child(3) .support-text-container {
    flex: 1;
}

/* Responsive güncellemeler */
@media (max-width: 768px) {
    .support-item:nth-child(3) {
        align-items: center;
        text-align: center;
    }
    
    .meal-name {
        font-size: 0.85rem;
    }
}

/* Günün Yemeği Widget Stilleri */
.meal-widget {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.meal-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
}

.meal-card {
    background: white;
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.meal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
}

.meal-date-full {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.day {
    font-size: 2rem;
    font-weight: 800;
    color: #f59e0b;
    line-height: 1;
}

.month-year {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
}

.status-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
}

.meal-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.meal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.meal-description {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.meal-details {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #4b5563;
    font-weight: 500;
}

.detail-item:last-child {
    color: #ef4444;
    font-weight: 600;
}

.detail-item:last-child svg {
    animation: calorieGlow 2s ease-in-out infinite alternate;
}

@keyframes calorieGlow {
    0% {
        filter: drop-shadow(0 0 2px rgba(239, 68, 68, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 6px rgba(239, 68, 68, 0.6));
    }
}

.detail-item svg {
    flex-shrink: 0;
}

/* Hover efekti */
.meal-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .meal-widget {
        padding: 1rem;
    }
    
    .meal-card {
        padding: 1rem;
    }
    
    .meal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .meal-details {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .day {
        font-size: 1.75rem;
    }
    
    .meal-title {
        font-size: 1.1rem;
    }
}

/* Tümünü Gör Butonu */
.btn-view-all {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.6rem;
    font-weight: 600;
    color: #f59e0b;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    outline: none;
}

.btn-view-all:hover {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(251, 191, 36, 0.15) 100%);
    border-color: rgba(245, 158, 11, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
    color: #d97706;
}

.btn-view-all:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(245, 158, 11, 0.3);
}

.btn-view-all svg {
    transition: transform 0.3s ease;
}

.btn-view-all:hover svg {
    transform: translateX(2px);
}

/* Responsive */
@media (max-width: 768px) {
    .btn-view-all {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .btn-view-all span {
        display: none;
    }
    
    .btn-view-all {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
}