﻿/* customSelect.css */
.custom-select-wrapper {
    position: relative;
    width: 416px;
    font-family: 'ABC Favorit', sans-serif，Haveltica;
}

.custom-select-display {
    border: 1px solid #4567FF;
    border-radius: 4px;
    padding: 10px 30px 10px 12px;
    background: white;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
    position: relative;
}

    .custom-select-display::after {
        content: '';
        position: absolute;
        right: 10px;
        top: 50%;
        width: 0;
        height: 0;
        transform: translateY(-50%);
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid #666;
    }

.custom-select-wrapper.open .custom-select-display {
    border-color: #1a73e8;
    box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2);
    color: #333;
}

.custom-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 415px;
    background: white;
    border: 1px solid #1a73e8;
    border-top: none;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 0 0 4px 4px;
}

.custom-select-wrapper.open .custom-select-options {
    display: block;
}

.custom-select-option {
    padding: 10px 12px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .custom-select-option:hover {
        background-color: #4567FF;
        color: #fff;
    }

    .custom-select-option.selected {
        /*background-color: #4285f4;
        color: white;*/
    }

.custom-select-display.placeholder {
    color: #aaa;
    /* font-style: italic;*/
}
