body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.dropzone {
    border: 0.6em dashed #d8d8d8;
    background-color: #f3f3f3;
    height: calc(100vh - 120px);
    flex-grow: 1;
}

.dropzone .dz-message {
    font-size: 1.5em;
    color: #007bff;
}

.modal-body img {
    max-width: 100%;
}

#resultModal .modal-body.text-center {
    background-image: url('assets/imgs/transparent-bg.png');
    background-repeat: repeat;
    background-size: 1em;
}

.header {
    height: 60px;
    background-color: #007bff;
    color: white;
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-size: 1.5em;
    font-weight: 500;
}

.header img {
    height: 40px;
    margin-right: 15px;
}

.footer {
    height: 60px;
    background-color: #007bff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    font-size: 0.9em;
    font-weight: 400;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.email {
    unicode-bidi: bidi-override;
    direction: rtl;
}

.footer .active {
    text-decoration: underline;
}

.dz-preview .dz-progress .dz-upload {
    background: #007bff !important;
}

.disabled-dropzone {
    pointer-events: none;
    opacity: 0.5;
    display: none !important;
}

.img-max-dimensions {
    max-width: 600px;
    max-height: 400px;
}


#uploadingMessage {
    /* height: calc(100vh - 100px); */
    flex-grow: 1;
    align-content: center;
}