.custom-dropdown{position:relative;width:100%;user-select:none;z-index:10}.custom-dropdown.open{z-index:1001}.custom-dropdown-selected{display:flex;align-items:center;justify-content:space-between;padding:.75rem 1rem;background-color:var(--background);border:1px solid var(--border);border-radius:.5rem;cursor:pointer;transition:all .2s ease;min-height:2.75rem}.custom-dropdown-selected:hover{border-color:var(--primary);box-shadow:0 0 0 3px rgba(212,175,55,.1)}.custom-dropdown.open .custom-dropdown-selected{border-color:var(--primary);box-shadow:0 0 0 3px rgba(212,175,55,.15);border-bottom-left-radius:0;border-bottom-right-radius:0}.custom-dropdown-text{flex:1;color:var(--foreground);font-size:.875rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.custom-dropdown-arrow{display:flex;align-items:center;justify-content:center;margin-left:.5rem;color:var(--muted-foreground);transition:transform .3s ease}.custom-dropdown.open .custom-dropdown-arrow{transform:rotate(180deg);color:var(--primary)}.custom-dropdown-arrow svg{width:20px;height:20px}.custom-dropdown-options{position:absolute;top:100%;left:0;right:0;background-color:var(--card);border:1px solid var(--primary);border-top:none;border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem;max-height:0;overflow:hidden;opacity:0;visibility:hidden;transition:all .3s ease;box-shadow:0 10px 25px rgba(0,0,0,.15);z-index:1000}.custom-dropdown.open .custom-dropdown-options{max-height:300px;overflow-y:auto;opacity:1;visibility:visible}.custom-dropdown-option{padding:.75rem 1rem;cursor:pointer;transition:all .2s ease;font-size:.875rem;color:var(--foreground);border-bottom:1px solid var(--border)}.custom-dropdown-option:last-child{border-bottom:none}.custom-dropdown-option:hover{background-color:rgba(212,175,55,.1);color:var(--primary)}.custom-dropdown-option.selected{background-color:rgba(212,175,55,.15);color:var(--primary);font-weight:600;position:relative}.custom-dropdown-option.selected::before{content:'';position:absolute;left:0;top:0;bottom:0;width:3px;background-color:var(--primary)}.custom-dropdown-option.disabled{opacity:.5;cursor:not-allowed;pointer-events:none}.custom-dropdown-options::-webkit-scrollbar{width:8px}.custom-dropdown-options::-webkit-scrollbar-track{background:var(--muted);border-bottom-right-radius:.5rem}.custom-dropdown-options::-webkit-scrollbar-thumb{background:var(--primary);border-radius:4px}.custom-dropdown-options::-webkit-scrollbar-thumb:hover{background:var(--primary-dark,#b8922c)}@keyframes slideDown{from{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}.custom-dropdown.open .custom-dropdown-option{animation:slideDown .3s ease forwards}.custom-dropdown.open .custom-dropdown-option:first-child{animation-delay:0s}.custom-dropdown.open .custom-dropdown-option:nth-child(2){animation-delay:30ms}.custom-dropdown.open .custom-dropdown-option:nth-child(3){animation-delay:60ms}.custom-dropdown.open .custom-dropdown-option:nth-child(4){animation-delay:90ms}.custom-dropdown.open .custom-dropdown-option:nth-child(5){animation-delay:.12s}.custom-dropdown:focus-within .custom-dropdown-selected{outline:2px solid var(--primary);outline-offset:2px}.custom-dropdown.disabled .custom-dropdown-selected{opacity:.6;cursor:not-allowed;background-color:var(--muted)}@media (max-width:768px){.custom-dropdown-options{max-height:250px}.custom-dropdown-option{padding:.875rem 1rem}}.dark .custom-dropdown-selected{background-color:var(--card)}.dark .custom-dropdown-options{background-color:var(--card);box-shadow:0 10px 25px rgba(0,0,0,.5)}.dark .custom-dropdown-option:hover{background-color:rgba(212,175,55,.15)}.custom-dropdown-option-icon{display:inline-flex;align-items:center;justify-content:center;width:20px;height:20px;margin-right:.5rem;color:var(--muted-foreground)}.custom-dropdown-option.selected .custom-dropdown-option-icon{color:var(--primary)}.custom-dropdown.invalid .custom-dropdown-selected{border-color:#dc2626;background-color:#fef2f2}.custom-dropdown.invalid .custom-dropdown-selected:hover{border-color:#dc2626;box-shadow:0 0 0 3px rgba(220,38,38,.1)}.custom-dropdown.loading .custom-dropdown-selected::after{content:'';width:16px;height:16px;border:2px solid var(--border);border-top-color:var(--primary);border-radius:50%;animation:spin .8s linear infinite;margin-left:.5rem}@keyframes spin{to{transform:rotate(360deg)}}