﻿/* Add this CSS to your stylesheet */
.page-menu-color {
    background-color: whitesmoke;
    color: black;
}

.menu-toggler {
    background-color: whitesmoke;
    color: black;
    display: none; /* Initially hidden */
    font-size: 24px;
    cursor: pointer;
}

.desktop-menu {
    padding-left: 300px;
}

    .desktop-menu li a, .mobile-menu li a {
        color: black !important;
    }

/* Mobile Menu styles */
.mobile-menu {
    display: none;
    background-color: whitesmoke;
    position: absolute;
    width: 100%;
    z-index: 1000;
}

/* Responsiveness */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .menu-toggler {
        display: block;
    }
}
