.image-upload-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.image-upload-btn {
    width: 100px;
    height: 100px;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.image-upload-btn:hover {
    border-color: #007bff;
    background-color: #e9f5ff;
}

.upload-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
    position: relative;
}

.upload-icon::before,
.upload-icon::after {
    content: '';
    position: absolute;
    background: #6c757d;
    transition: all 0.2s;
}

.upload-icon::before {
    width: 100%;
    height: 2px;
    top: 11px;
    left: 0;
}

.upload-icon::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 11px;
}

.image-upload-btn:hover .upload-icon::before,
.image-upload-btn:hover .upload-icon::after {
    background: #007bff;
}

.upload-text {
    color: #6c757d;
    font-size: 12px;
    text-align: center;
}

.upload-count {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 12px;
}

.image-preview-container {
    position: relative;
    width: 100px;
    height: 100px;
}

.image-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.image-delete-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    background: #ff4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    cursor: pointer;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.image-delete-btn:hover {
    opacity: 1;
}

.hidden {
    display: none;
}