/* Base styling for the dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Styling for the dropdown button */
.dropdown-button {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

/* Dropdown button hover effect */
.dropdown-button:hover {
    background-color: #0056b3;
}

/* Dropdown content container */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    min-width: 200px;
}

/* Links inside the dropdown content */
.dropdown-content a {
    color: black;
    text-decoration: none;
    display: block;
    padding: 10px 20px;
}

/* Links hover effect */
.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Submenu dropdown */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu-content {
    display: none;
    position: absolute;
    left: 100%; /* Align submenu to the right */
    top: 0;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 2;
    min-width: 200px;
}

/* Submenu links styling */
.dropdown-submenu-content a {
    padding: 10px 20px;
}

.dropdown-submenu-content a:hover {
    background-color: #f1f1f1;
}

/* Show dropdown and submenu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content .dropdown-submenu:hover .dropdown-submenu-content {
    display: block;
}
