.dropzone__wrapper {
    height: 100%;
    width: 100%;

    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;

    min-width: 0
}

.dropzone__wrapper > p {
    font-size: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropzone {
    width: 130px;
    min-width: 130px;
    height: 30px;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 16px;

    background-color: var(--color-background);
    border-radius: 8px;
    border: 2px solid white;

    transition: box-shadow 0.2s;
}

.dropzone:hover {
    box-shadow: 0 0 1rem white;
    cursor: pointer;
}

.dropzone:active {
    box-shadow: 0 0 0.5rem white;
}

.dropzone input{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    cursor: pointer;
    font-size: 0;
}

.dropzone input::-webkit-file-upload-button {
    display: none;
}