a:hover {
    text-decoration: none;
}

.subheader-logo  {
    display: flex;
    align-items: center;
}
.subheader-logo > img {
    max-height : 30px;
    margin-right: 5px;
}
.app-brand-logo {
    max-height: 40px;
}

.justify-content-none {
    justify-content: unset !important;
}
.white-space-normal {
    white-space: normal !important;
}


/* Drop zone */

.dropzone {
    border: 2px dashed #ccc !important;
    border-radius: 3px;
    height: 150px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

    .dropzone.drag-over {
        background-color: #f7f7f7;
    }

.dropzone__input {
    display: none;
}

.dropzone__prompt {
    font-size: 1.2rem;
    text-align: center;
    color: #999;
}

.dropzone:hover {
    border: 2px dashed #206bc4 !important;
}

.dropzone_hover {
    border: 2px dashed #206bc4 !important;
}