﻿.image-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

    .thumbnail:hover {
        transform: scale(1.05);
    }

.file-upload-label {
    display: none !important;
}
.drop-zone:hover {
    background-color: #f08d1114 !important;
    border-color: #f08d11 !important;
}
