﻿/**
 * Main DropZone styling.
 **/

.dropzone {

}

.dropzone .table.files {

}

.dropzone .table.files .preview {
    display: flex;

    width: 4em;
    height: 4em;

    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0.25rem;

    overflow: hidden;
}

.dropzone .table.files .preview img {
    width: 100%;

    object-fit: contain;
}

.dropzone #drop-area {
    background-color: #f8f9fa;
    cursor: pointer;
}

.dropzone #drop-area.dragover {
    background-color: #e3f2fd;
    border-color: #2196f3;
}