.custom-dropdown {
    position: relative;
    width: 100%; /* Adjust as needed */
}

.dropdown-toggle {
    border: 1px solid #ccc;
    padding: 10px;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    width: 100%;
    max-height: 200px; /* Set maximum height */
    overflow-y: auto; /* Enable scrolling */
    z-index: 1000;
    display: none; /* Initially hidden */
}

.country-checkbox {
    margin-right: 5px;
}

.custom-dropdown input[type=checkbox] {
    margin-left: 10px !important;
}

.clear-icon {
    position: absolute;
    right: 11px;
    margin-top: 3px;
    cursor:pointer;
    
}

.dropdown-toggle::after {
    display: inline !important;
}
