﻿.file-drop-area {
    display: flex;
    position: relative;
    align-items: center;
    width: 100%;
    padding: 1em;
    border: 1px dashed #BBB;
    border-radius: 3px;
    transition: 0.2s;
    cursor: pointer;
}

.file-message {
    font-size: smaller;
    font-weight: 300;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: 1em;
}

.file-input {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    opacity: 0;
}