.custom-select {
    position: relative;
    width: 100%;
}

.select-trigger {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 14px 16px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: url('/public/cursors/pointer.cur'), auto;
    transition: all 0.2s ease;
    user-select: none;
    gap: 6px;
}

.select-trigger:hover {
    border-color: #9e62fe;
}

.custom-select.open .select-trigger {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: none;
    border-color: #9e62fe;
}

.select-text {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    flex: 1;
    width: 100%;

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.select-arrow {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.custom-select.open .select-arrow {
    transform: rotate(180deg);
}

.select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #9e62fe;
    border-top: none;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    max-height: 280px;
    overflow-y: auto;
    padding: 0 8px 8px 8px;
}

.custom-select.open .select-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.select-option {
    padding: 12px 16px;
    font-size: 14px;
    color: #000;
    cursor: url('/public/cursors/pointer.cur'), auto;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 5px;
}

.select-option:last-child {
    border-bottom: none;
}

.select-option:hover {
    background-color: #f8f6ff;
}

.select-option.selected {
    background-color: #9e62fe;
    color: white;
}

.select-dropdown::-webkit-scrollbar {
    width: 6px;
}

.select-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.select-dropdown::-webkit-scrollbar-thumb {
    background: #9e62fe;
    border-radius: 3px;
}

.select-dropdown::-webkit-scrollbar-thumb:hover {
    background: #8a4fe6;
}
