/* Custom Select Styling - Standardized version */
.custom-select-container {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 14px !important;
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    cursor: pointer;
    font-size: 0.95rem !important;
    height: 42px !important;
    transition: all 0.2s;
    box-sizing: border-box !important;
    color: #1e293b !important;
}

.custom-select-trigger.disabled {
    background: #f8fafc !important;
    cursor: not-allowed;
    color: #9ca3af !important;
}

.custom-select-trigger:hover:not(.disabled) {
    border-color: #cbd5e0 !important;
}

.custom-select-trigger.active {
    border-color: #875a7b !important;
    box-shadow: 0 0 0 3px rgba(135, 90, 123, 0.1) !important;
}

.custom-select-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    overflow: hidden;
}

.search-container {
    padding: 6px;
    border-bottom: 1px solid #f1f5f9;
    background: #f8fafc;
}

.custom-select-search {
    width: 100%;
    padding: 5px 10px;
    border: 1px solid #e2e8f0 !important;
    border-radius: 6px;
    font-size: 13px;
    outline: none;
    height: 32px !important;
}

.custom-select-options {
    max-height: 200px;
    overflow-y: auto;
}

.custom-select-option {
    padding: 8px 14px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.15s;
    border-bottom: 1px solid #f8fafc;
}

.custom-select-option:hover {
    background: #f1f5f9;
}

.custom-select-option.selected {
    background: #875a7b;
    color: #fff;
}

.arrow {
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    color: #718096;
}

.arrow.up {
    transform: rotate(180deg);
}

.selected-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
