/* Enhanced Celebrity Dropdown Styles */
.celebrity-dropdown {
    position: relative;
    width: 100%;
}

.celebrity-dropdown-trigger {
    width: 100%;
    padding: 15px;
    background: #1A1A1A;
    border: 2px solid #3D3D3D;
    border-radius: 12px;
    color: #E8E8E8;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
}

.celebrity-dropdown-trigger:focus {
    outline: none;
    border-color: #FF6F00;
    box-shadow: 0 0 0 3px rgba(255, 111, 0, 0.2);
}

.celebrity-dropdown-trigger:hover {
    border-color: #FF6F00;
}

.celebrity-dropdown-trigger.active {
    border-color: #FF6F00;
    box-shadow: 0 0 0 3px rgba(255, 111, 0, 0.2);
}

.celebrity-dropdown-selected {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.celebrity-dropdown-selected img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FF6F00;
}

.celebrity-dropdown-selected span {
    color: #E8E8E8;
    font-weight: 500;
}

.celebrity-dropdown-placeholder {
    color: #888;
    font-style: italic;
}

.celebrity-dropdown-arrow {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #888;
    
}

.celebrity-dropdown-arrow.rotated {
    transform: rotate(180deg);
}

.celebrity-dropdown-list {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #1A1A1A;
    border: 2px solid #3D3D3D;
    border-radius: 12px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.celebrity-dropdown-list.show {
    display: block;

}


.celebrity-dropdown-search {
    position: sticky;
    top: 0;
    background: #1A1A1A;
    padding: 12px;
    border-bottom: 1px solid #3D3D3D;
    z-index: 1001;
}

.celebrity-dropdown-search input {
    width: 100%;
    padding: 10px 12px;
    background: #2D2D2D;
    border: 1px solid #3D3D3D;
    border-radius: 8px;
    color: #E8E8E8;
    font-size: 14px;
    
}

.celebrity-dropdown-search input:focus {
    outline: none;
    border-color: #FF6F00;
    box-shadow: 0 0 0 2px rgba(255, 111, 0, 0.2);
}

.celebrity-dropdown-search input::placeholder {
    color: #888;
}

.celebrity-dropdown-item {
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(61, 61, 61, 0.3);
}

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

.celebrity-dropdown-item:hover {
    background: #2D2D2D;
    
}

.celebrity-dropdown-item.selected {
    background: rgba(255, 111, 0, 0.1);
    border-left: 3px solid #FF6F00;
}

.celebrity-dropdown-item img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #3D3D3D;
    
}

.celebrity-dropdown-item:hover img {
    border-color: #FF6F00;
}

.celebrity-dropdown-item span {
    color: #E8E8E8;
    font-weight: 500;
    font-size: 15px;
}

.celebrity-dropdown-item.selected span {
    color: #FFB74D;
}

.celebrity-dropdown-no-results {
    padding: 20px;
    text-align: center;
    color: #888;
    font-style: italic;
}

/* Custom scrollbar for dropdown */
.celebrity-dropdown-list::-webkit-scrollbar {
    width: 8px;
}

.celebrity-dropdown-list::-webkit-scrollbar-track {
    background: #2D2D2D;
    border-radius: 4px;
}

.celebrity-dropdown-list::-webkit-scrollbar-thumb {
    background: #FF6F00;
    border-radius: 4px;
}

.celebrity-dropdown-list::-webkit-scrollbar-thumb:hover {
    background: #FFB74D;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .celebrity-dropdown-list {
        max-height: 250px;
    }
    
    .celebrity-dropdown-item {
        padding: 10px 12px;
    }
    
    .celebrity-dropdown-item img {
        width: 36px;
        height: 36px;
    }
    
    .celebrity-dropdown-selected img {
        width: 28px;
        height: 28px;
    }
}

