body, html {
    margin: 0;
    padding: 0;
    /* height: 100%; */
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px; /* Adjust height as needed */
    background-color: white; /* Background color of navbar */
    color: black; /* Text color */
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
}
.z-ind {
    z-index:-1;
}
.menu-icon {
    margin-top:-5px;
    margin-left:-15px;
    padding: 0px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}
.heading-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.menu-content {
    position: fixed;
    top: 0;
    left: -60%; /* Initially hide the menu */
    width: 60%; /* Adjust width of menu */
    height: 100%;
    background-color: white; /* Background color of menu */
    transition: left 0.3s ease;
}

.menu-content ul {
    list-style-type: none;
    padding: 0;
}

.menu-content ul li {
    padding: 4px;
}
.menu-content a {
    color:black;
}
.overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4); /* Transparent dark overlay */
    z-index: -1; /* Place under menu */
    display: none; /* Initially hide the overlay */
}
.list-styles ul {
    list-style-type: none;
    padding: 0;
}
.gen-shadow {
-webkit-box-shadow: 0px 1px 5px 0px rgba(110,100,110,0.39);
-moz-box-shadow: 0px 1px 5px 0px rgba(110,100,110,0.39);
box-shadow: 0px 1px 5px 0px rgba(110,100,110,0.39);
}
