/* Dropdown menu styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    background-color: transparent;
    border: none;
}

.dropdown-menu {
    /* position: absolute; */
    top: calc(100% + 5px);
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
}
.dropdown-menu a {
        text-decoration: none; /* Remove underline */
        color: inherit; /* Inherit text color */
    }

.dropdown-menu.show {
    display: block;
    margin-right: 10px;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa;
}

.flag-icon {
    margin-right: 10px; /* Adjust spacing between flag icon and language text */
}

/* Adjust the size of the flag icons */
.flag-icon-lg {
    font-size: 24px; /* You can adjust the size as needed */
    margin-right: 5px; /* Adjust spacing between flag icon and dropdown icon */
}

/* Styles for the dropdown icon */
.dropdown-toggle .fas.fa-caret-down {
    margin-left: 5px;
}
