﻿@charset "UTF-8";

.upload-zone {
    border: 2px dashed #adb5bd;
    border-radius: 0.75rem;
    padding: 2.5rem 1rem;
    text-align: center;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}
.upload-zone:hover,
.upload-zone.drag-over {
    border-color: #72C6A6;
    background-color: #e3f4ed;
}
.upload-zone textarea {
    min-height: 120px;
}
.file-item {
    width: 100%;
}
.preview-img {
    max-width: 100%;
    max-height: 50px;
    /* aspect-ratio: 1 / 1; */
    object-fit: cover;
    border-radius: 0.25rem;
    align-self: center;
}
.result-item {
    width: 100%;
}
.result-img {
    max-width: 100%;
    max-height: 100px;
    /* aspect-ratio: 1 / 1; */
    object-fit: cover;
    border-radius: 0.25rem;
    align-self: center;
}
#file_list_wrapper,
#result {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
@media (max-width: 576px) {
    #file_list_wrapper,
    #result {
        grid-template-columns: 1fr;
    }
}
.progress { height: 1.25rem; }