/* Menu Tabs Styles */
.menu-tabs {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    padding: 0 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 40px;
    border: none;
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
    color: #666;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tab-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.tab-btn.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

.tab-btn i {
    font-size: 1.2rem;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .tab-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

