/* Custom Dropdown Containers with Rounded Edges */
.dropdown-container {
    position: relative;
    display: inline-block;
    margin: 0 10px;
}

.dropdown-button {
    background: linear-gradient(135deg, #4a5568 0%, #162642 100%);
    border: 2px solid #4a90e2;
    border-radius: 25px;
    color: white;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 150px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.2);
}

.dropdown-button:hover {
    background: linear-gradient(135deg, #5a6578 0%, #3d4758 100%);
    border-color: #1ed2ff;
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
    transform: translateY(-2px);
}

.dropdown-button.active {
    border-color: #1ed2ff;
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.dropdown-arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
    font-size: 12px;
}

.dropdown-button.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #071122;
    border: 2px solid #1ed2ff;
    border-radius: 20px;
    margin-top: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 12px 20px;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(74, 144, 226, 0.1);
    font-size: 14px;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, #1ed2ff7c 0%, rgba(56, 124, 201, 0.479) 100%);
    padding-left: 25px;
}

.dropdown-item.selected {
    background: rgba(74, 144, 226, 0.3);
    color: #1ed2ff;
    font-weight: 500;
}

.dropdown-item.selected:hover {
    background: linear-gradient(90deg, #1ed2ff 0%, #18acd1 100%);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dropdown-button {
        min-width: 120px;
        padding: 10px 15px;
        font-size: 13px;
    }

    .dropdown-item {
        padding: 10px 15px;
        font-size: 13px;
    }
}