.tfile-drag-drop-container {
    background-color: #F6F6F6F6;
    height: 200px;
    border: 2px dashed #ccc;
}

.profile-container {
    width: 100%;
    /* adjust the width to your desired size */
    height: 100%;
    /* adjust the height to your desired size */
    overflow: hidden;
    /* ensures the image stays within the div */
}


.profile-container img {
    width: 150px;
    height: 150px;
    margin-top: 15px;
    margin-bottom: 15px;
    object-fit: fill;
    /* maintains the aspect ratio and covers the div */
}

/* para quando exibe a imagem em um retangulo */
.profile-container-orientation {
    width: 100%;
    /* adjust the width to your desired size */
    height: 100%;
    /* adjust the height to your desired size */
    overflow: hidden;
    /* ensures the image stays within the div */
}

.profile-container-orientation img {
    width: 250px;
    height: 150px;
    margin-top: 15px;
    margin-bottom: 15px;
    object-fit: fill;
    /* maintains the aspect ratio and covers the div */
}

