/* 🌌 Cyberpunk Neon Purple Image Picker & Uploader Styles */
.image-picker-group {
    background: rgba(13, 11, 26, 0.6);
    border: 1px solid rgba(168, 85, 247, 0.22);
    border-radius: 14px;
    padding: 12px 14px;
    transition: all 0.25s ease;
}

.image-picker-group:hover {
    border-color: rgba(168, 85, 247, 0.45);
    box-shadow: 0 4px 18px rgba(168, 85, 247, 0.12);
}

.image-picker-toggle .btn {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 8px !important;
    transition: all 0.2s ease;
}

.image-picker-toggle .btn.active {
    background: linear-gradient(135deg, #a855f7, #7c3aed) !important;
    border-color: #c084fc !important;
    color: #ffffff !important;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.4);
}

.image-dropzone {
    background: rgba(168, 85, 247, 0.05);
    border: 2px dashed rgba(168, 85, 247, 0.35);
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.image-dropzone:hover {
    background: rgba(168, 85, 247, 0.12);
    border-color: #c084fc;
    box-shadow: 0 0 16px rgba(168, 85, 247, 0.25);
    transform: translateY(-1px);
}

.image-dropzone.drag-over {
    background: rgba(168, 85, 247, 0.25);
    border-color: #d946ef;
    border-style: solid;
    box-shadow: 0 0 25px rgba(217, 70, 239, 0.45);
    transform: scale(1.02);
}

.image-dropzone.uploading {
    pointer-events: none;
    opacity: 0.7;
    filter: blur(0.5px);
}

.image-preview-thumb {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(168, 85, 247, 0.35);
    background: #000;
    flex-shrink: 0;
}

.image-preview-box {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(168, 85, 247, 0.18);
    border-radius: 10px;
    padding: 6px 10px;
}
