
.burger-menu-button {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    z-index: 1050;
}

.mobile-nav {
    display: flex; /* Changed from none to flex to allow transform to work */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1040;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav li {
    margin: 25px 0;
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
}

.close-menu-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {
    .burger-menu-button {
        display: block;
    }
    .nav-right a {
        display: none; /* Hide personal account button on mobile */
    }
}
