/* Prevent profile icon flicker */
.profile-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    /* Prevent layout shift while loading */
    min-width: 40px;
    min-height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Profile dropdown alignment */
#profileDropdown {
    padding: 0.25rem;
}

#profileDropdown i {
    display: block;
    line-height: 1;
}

/* Prevent dark mode icon flicker */
#dark-mode-toggle {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#dark-mode-toggle i {
    font-size: 1.25rem;
    transition: none;
    /* Remove transition to prevent flicker */
}

/* Style for nested dropdowns */
.dropdown-menu .dropdown-submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -7px;
}

.dropdown-menu .dropdown-item:hover>.dropdown-submenu {
    display: block;
}

/* Google Translate Widget Styling */
#google_translate_element {
    margin-left: 1rem;
}

.goog-te-gadget-simple {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    padding: .375rem .75rem;
}
