.custom-select-container {
    height: 40px;
}

.custom-select-list {
    position: absolute;
    top: calc(100% + 3px);
    left: 0;
    width: 100%;
    max-height: 14rem;
    overflow: auto;
    background-color: #F8FAFC !important;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px rgba(2, 6, 23, 0.2);
    padding: 6px;
    z-index: 1;
}

.custom-select-list .option-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.6rem;
    cursor: pointer;
    color: black;
    background: #fff;
    margin-bottom: 0.25rem;
}

.custom-select-list .option-item:last-child {
    margin-bottom: 0;
}

.custom-select-list .option-item i {
    visibility: hidden;
}

.custom-select-list .option-item.selected i {
    visibility: visible;
}

.custom-select-list .option-item.selected.hovered,
.custom-select-list .option-item.hovered {
    background: #0c4da2;
    color: #fff;
}

.custom-select-list .option-item.selected-temp {
    background: #fff;
    color: black;
}

.custom-select-list .option-item:focus {
    outline: none;
}