.dropdown-wrapper {
    position: relative;
    width: 100%;
    font-family: Arial, sans-serif;
}

.dropdown-wrapper.disabled {
    opacity: 0.6;
    pointer-events: none;
}

.dd-display {
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.custom-dropdown-wrapper {
    position: relative;
}
.dd-display .dd-arrow {
    margin-left: 8px;
}

.dd-menu {
    position: absolute;
    z-index: 1000;
    width: 100%;
    background: #172032;
    border: 1px solid #475569;
    max-height: 200px;
    overflow-y: auto;
    margin-top: -5px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    color: #fff;
    font-size: 0.875rem;
}
#light-mode .cam-screen {
	--cam-scroll-track: #e2e2e2;
	--cam-scroll-thumb: #636060;
	--cam-scroll-thumb-hover: #3b82f6;
}
.dd-search {
    width: 100%;
    display: block;
    padding: 5px 8px;
    border: 1px solid #475569;
    border-radius: 4px;
    background: #172032;
    position: sticky;
    top: 0px;
}
#light-mode .dd-menu {
    background: #ffffff;
    border: 1px solid #a8a8a8;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    color: #333;
}

#light-mode .dd-search {
    border: 1px solid #d6d6d6;
    background: #f0f0f0;
    color: #333;
}
#light-mode .dd-search::placeholder {
    color: #333;
}
#light-mode .dd-item:hover {
    background-color: #d6d6d6;
}

.dd-item {
    padding: 8px 12px;
    cursor: pointer;
}

.dd-item:hover {
    background-color:#1b2741;
}

.dd-empty {
    padding: 8px 12px;
    color: #999;
}
