.navbar-nav {
    gap: 2rem;
    font-size: 1.2rem;
}
.custom-dropdown-menu {
    background-color: black !important;
    border: 1px solid white !important;
}
.custom-dropdown-menu > li > a:hover {
    background-color: white !important;
    color: black !important;
}
.navbar-toggler {
    background-color: white !important;
}
.custom-navbar {
    background-color: black;
    z-index: 999999 !important;
}
/* Mobile Devices */
@media only screen and (max-width: 600px) {
    .navbar-nav {
        gap: 0;
        font-size: 1rem;
    }
}

/* Tablets */
@media only screen and (min-width: 601px) and (max-width: 1024px) {
    .navbar-nav {
        gap: 0;
        font-size: 1rem;
    }
}

/* Desktops */
@media only screen and (min-width: 1025px) {
    /* CSS rules for desktops */
}
