/* BioLink Pro - Custom Select Dropdown */
.bio-select-wrap { position: relative; width: 100%; }
.bio-select-trigger {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px; padding: 10px 14px; cursor: pointer;
    font-size: 14px; line-height: 1.3; color: #fff; min-height: 42px; user-select: none;
    transition: border-color 0.2s;
}
.bio-select-trigger .bio-select-label {
    min-width: 0; flex: 1 1 auto; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.bio-select-trigger:hover { border-color: rgba(108,99,255,0.5); }
.bio-select-trigger .arrow {
    font-size: 10px; color: rgba(255,255,255,0.4); transition: transform 0.2s; margin-left: 8px;
}
.bio-select-wrap.open .bio-select-trigger .arrow { transform: rotate(180deg); }
.bio-select-wrap.open .bio-select-trigger { border-color: var(--primary, #6C63FF); }
.bio-select-dropdown {
    display: none; position: absolute; top: calc(100% + 4px); left: 0; right: 0;
    background: #1e1e36; border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px; z-index: 9999; max-height: 260px; overflow-y: auto;
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}
.bio-select-dropdown.open { display: block; }
.bio-select-dropdown .bio-option {
    display: block; position: relative; line-height: 1.5;
    padding: 10px 14px; font-size: 13px; color: rgba(255,255,255,0.7);
    cursor: pointer; transition: background 0.15s, color 0.15s;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.bio-select-dropdown .bio-option:hover { background: rgba(108,99,255,0.2); color: #fff; }
.bio-select-dropdown .bio-option.selected { background: rgba(108,99,255,0.15); color: #fff; font-weight: 600; }
.bio-select-dropdown::-webkit-scrollbar { width: 6px; }
.bio-select-dropdown::-webkit-scrollbar-track { background: transparent; }
.bio-select-dropdown::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 3px; }
