/* Ensure the image doesn't overflow its container before Cropper initializes */
img {
    display: block;
    max-width: 100%;
}

/* Custom scrollbar for the queue container */
#thumbnailContainer::-webkit-scrollbar {
    width: 6px;
}
#thumbnailContainer::-webkit-scrollbar-track {
    background: #f1f5f9; 
    border-radius: 4px;
}
#thumbnailContainer::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 4px;
}
#thumbnailContainer::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}