/* 커스텀 select box 스타일 */
.custom-select-container {
    position: relative;
    flex: 1;
}

.custom-select-trigger {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e9e9e9;
    border-radius: 10px;
    font-size: 14px;
    background-color: #fff;
    color: #333;
    outline: none;
    transition: all 0.2s;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-select-trigger:focus, 
.custom-select-trigger.active {
    border-color: #54C695;
    box-shadow: 0 0 0 1px #54C695;
}

.custom-select-trigger::after {
    content: '';
    width: 12px;
    height: 12px;
    background-image: url('../icon/arrowbottom.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s;
}

.custom-select-trigger.active::after {
    background-image: url('../icon/arrowtop.png');
}

.custom-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
    max-height: 300px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    border: 1px solid #e9e9e9;
}

.custom-option {
    padding: 10px 11px;
    cursor: pointer;
    transition: background 0.2s;
}

.custom-option:hover {
    background-color: #f0f7f5;
}
/*
.custom-option.selected {
    background-color: #f0f7f5;
    color: #54C695;
    font-weight: 500;
}
*/
.custom-option-divider {
    height: 1px;
    background-color: #e9e9e9;
    margin: 5px 0;
}