.select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.select-wrapper .clear-btn {
    position: absolute;
    right: 35px; /* Adjust the distance so that it does not overlap with the arrow. */
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent !important;
    cursor: pointer;
    color: #999;
    font-size: 18px;
    z-index: 2;
    background: white;
    padding: 0 4px;
    border-radius: 50%;
}

.select-wrapper select {
    width: 100%;
    padding-right: 40px; /* To provide a clear button */
}


