.custom-select-wrapper{position:relative;width:100%;margin-bottom:1rem}.custom-select-wrapper:has(.custom-options.show),.custom-select-wrapper:has(.custom-select.active){z-index:10000}.custom-select{background-color:var(--card-dark);color:var(--text-light);border:1px solid var(--border-dark);padding:12px 16px;border-radius:8px;font-size:.875rem;cursor:pointer;display:flex;align-items:center;justify-content:space-between;transition:all .3s cubic-bezier(.175, .885, .32, 1.275);user-select:none}:root.light-mode .custom-select{background-color:var(--card-light);color:var(--text-dark);border-color:var(--border-light)}.custom-select:hover{border-color:var(--accent-color);transform:translateY(-2px)}.custom-select.active{border-color:var(--accent-color);box-shadow:0 0 0 3px rgba(0,114,255,.1)}.custom-select-arrow{transition:transform .3s ease;font-size:.75rem;color:var(--text-secondary)}:root.light-mode .custom-select-arrow{color:var(--text-secondary-light)}.custom-select.active .custom-select-arrow{transform:rotate(180deg)}.custom-options{position:absolute;top:calc(100% + 4px);left:0;right:0;background-color:var(--card-dark);border:1px solid var(--border-dark);border-radius:8px;box-shadow:0 8px 24px rgba(0,0,0,.4);max-height:300px;overflow-y:auto;overflow-x:hidden;z-index:9999;visibility:hidden;opacity:0;transform:translateY(-10px);transition:all .3s cubic-bezier(.25, .46, .45, .94);pointer-events:none}.custom-options.show{visibility:visible;opacity:1;transform:translateY(0);pointer-events:auto}:root.light-mode .custom-options{background-color:var(--card-light);border-color:var(--border-light);box-shadow:0 8px 24px rgba(0,0,0,.1)}.custom-options::-webkit-scrollbar{width:8px}.custom-options::-webkit-scrollbar-track{background:var(--bg-secondary);border-radius:0 8px 8px 0}:root.light-mode .custom-options::-webkit-scrollbar-track{background:var(--bg-secondary-light)}.custom-options::-webkit-scrollbar-thumb{background:var(--border-dark);border-radius:4px}:root.light-mode .custom-options::-webkit-scrollbar-thumb{background:var(--border-light)}.custom-options::-webkit-scrollbar-thumb:hover{background:var(--accent-color)}.custom-option{padding:12px 16px;cursor:pointer;color:var(--text-light);display:flex;justify-content:space-between;align-items:center;transition:all .2s ease;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}:root.light-mode .custom-option{color:var(--text-dark)}.custom-option:hover{background-color:rgba(0,114,255,.1);color:var(--accent-color)}.custom-option.selected{background-color:rgba(0,114,255,.15);color:var(--accent-color);font-weight:600}