.custom-dropdown-container {
    width: 100%;
    position: relative;
}

/* Style the button that opens the dropdown */
.custom-dropdown-container .dropdown-toggle {
    border: 0;
    padding: 0;
    width: 100%;
    text-align: left;
    color: var(--Black);
    background: rgba(251, 251, 251, 0.80);
}

/* Style the dropdown content (hidden by default) */
.custom-dropdown-container .dropdown-content {
    z-index: 1;
    width: 100%;
    display: block;
    position: absolute;
    background-color: white;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    left: -22px;
    top: 23px;
    text-align: center;
    min-width: 132px;
    border-radius: 10px;
}

/* Style the links inside the dropdown */
.custom-dropdown-container .dropdown-content .dropdown-item {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.custom-dropdown-container .dropdown-content .dropdown-item:hover, .custom-dropdown-container .dropdown-content .dropdown-item.item-active {
    background-color: var(--Primary);
    color: white;
}

.custom-dropdown-container .dropdown-content .dropdown-item[data-disabled="1"] {
    opacity: 0.3;
    cursor: default;
    background-color: #cbcbcb;
}
