.native-select-hidden {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 1px !important;
    height: 1px !important;
}

.app-custom-select {
    position: relative;
    width: 100%;
}

.app-custom-select-trigger {
    width: 100%;
    min-height: 46px;
    padding: 0 1rem;
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    color: grey;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.app-custom-select-trigger::after {
    content: "⌄";
    float: right;
    opacity: 0.75;
}

.app-custom-select.open .app-custom-select-trigger {
    border-color: rgba(212, 175, 55, 0.55);
}

.app-custom-select-menu {
    display: none;
    position: absolute;
    z-index: 99999;
    top: calc(100% + 0.4rem);
    left: 0;
    right: 0;
    max-height: 260px;
    overflow-y: auto;
    border-radius: 16px;
    background: #1f1818;
    border: 1px solid rgba(212, 175, 55, 0.28);
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.app-custom-select.open .app-custom-select-menu {
    display: block;
}

.app-custom-select-option {
    width: 100%;
    padding: 0.8rem 1rem;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: #ffffff;
    text-align: left;
    cursor: pointer;
}

.app-custom-select-option:hover,
.app-custom-select-option.active {
    background: rgba(212, 175, 55, 0.16);
}

.app-custom-select-option.placeholder {
    opacity: 0.6;
}

.app-custom-select-menu::-webkit-scrollbar {
    width: 8px;
}

.app-custom-select-menu::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
}

.app-custom-select-menu::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.65);
    border-radius: 999px;
}