.custom-select-container {
    position: relative;
    width: auto;
}

.custom-select-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: .375rem .75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    background-color: white;
}

.custom-select-input {
    display: none;
    width: 100%;
    box-sizing: border-box;
    padding: .375rem .75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size:  1rem;
    margin-top: 5px;
}

.custom-options {
    position: absolute;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
    max-height: 150px;
    overflow-y: auto;
    display: none;
    z-index: 1;
}

.custom-options div {
    padding: 10px;
    cursor: pointer;
}

.custom-options div:hover {
    background-color: #ddd;
}

.fa-chevron-down {
    margin-left: 10px;
}