/* Custom Select Dropdown Styling */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.select-selected {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 15px;
    cursor: pointer;
    font-size: 1.1em;
    color: #e0e0e0;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 15px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #e0e0e0 transparent transparent transparent;
}

.select-selected.select-arrow-active:after {
    border-color: transparent transparent #e0e0e0 transparent;
    top: 7px;
}

.select-items {
    position: absolute;
    background-color: rgba(20, 30, 40, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    max-height: 200px;
    overflow-y: auto;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.select-items div {
    color: #e0e0e0;
    padding: 12px 15px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.select-items div:hover {
    background-color: rgba(0, 191, 255, 0.2);
    color: #00bfff;
}

.select-hide {
    display: none;
}

.hidden-select {
    display: none;
}
