﻿/* General Navbar Styles */
nav {
    background-color: #ffe97f;
    overflow: hidden;
    color: white;
}

    nav a {
        float: left;
        display: block;
        color: black;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }

        nav a:hover {
            background-color: #ddd;
            color: black;
        }

/*.mohit-menu {
    display: flex;*/ /* ✅ Always show horizontally */
/*flex-wrap: wrap;
}*/
.mohit-menu {
    display: flex;
    flex-wrap: nowrap;
    overflow: scroll;
     
}

{
    position: relative;
    float: left;
}

.mohit-dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: black;
    padding: 14px 16px;
    background-color: inherit;
    cursor: pointer;
}

.mohit-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 9;
}

    .mohit-dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

        .mohit-dropdown-content a:hover {
            background-color: #ddd;
        }
 
.mohit-dropdown:hover .mohit-dropdown-content {
    display: block;
}

.mohit-dropdown:hover .mohit-dropbtn {
    background-color: #ddd;
}
