.menu-container {
    display: flex;
    justify-content: center; 
    gap: 10px; 
    padding: 20px;
}

.menu-tab {
    font-size: 1rem;
    font-weight: 600;
    color: #0d6efd;
    padding: 10px 15px;
    border-radius: 8px 8px 0 0; 
    background-color: #ffffff;
    border: 2px solid #0d6efd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.menu-tab.active {
    background-color: #0d6efd;
    color: #ffffff;
    border-bottom: 2px solid #0d6efd; 
}

.menu-tab:hover {
    background-color: #0d6efd;
    color: #ffffff;
}

h2 {
    color: #0d6efd;
    text-align: center;
    margin-bottom: 20px;
}

.menu-tab {
    position: relative;
}
