﻿.upload-flex-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 200px; 
    max-height: 400px; 
    padding: 10px;
}

.upload-progress {
    margin-top: 10px;
    width: 100%;
}

#dropzone-text {
    font-size: 14px;
    color: #888;
    text-align: center;
    opacity: 0.5;
}

#dropzone-external {
    width: 100%;
    max-width: 350px; 
    height: auto;
    min-height: 200px; 
    max-height: 400px;
    aspect-ratio: 1 / 1; 
    background-color: rgba(183, 183, 183, 0.1);
    border-width: 2px;
    border-style: dashed;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border-radius: 10px;
}

    #dropzone-external > * {
        pointer-events: none;
    }

    #dropzone-external.dropzone-hover {
        border-style: solid;
    }

#dropzone-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

@media (max-width: 768px) {
    #dropzone-external {
        max-width: 250px;
        min-height: 150px;
        max-height: 300px;
    }

    .upload-flex-box {
        min-height: 150px;
        max-height: 300px;
    }
}

#dropzone-text > span {
    opacity: 0.8;
}
