/* Custom Dropzone styles to match Tailwind's aesthetic */
.dropzone {
    border: 2px dashed #d4d4d4; /* gray-300 */
    border-radius: 0.5rem; /* rounded-lg */
    background-color: #4b4b4b; /* gray-50 */
    transition: background-color 0.2s ease-in-out;
    min-height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.dropzone .dz-message {
    color: #dadada; /* gray-600 */
    font-weight: 500;
}
.dropzone.dz-drag-hover {
    background-color: #4e4e4e; /* gray-200 */
    border-color: #1ab7e7; /* blue-600 */
}
.dz-preview .dz-image {
    border-radius: 0.5rem;
}
.dz-progress .dz-upload {
    background: #2563eb; /* blue-600 */
}
.lang {
    width: fit-content;
    font-size: 1rem;
    padding: 0.25em .2em 0.25em .2em;
    background-color: #575757;
    border: 1px solid #000000;
    border-radius: 0.25rem;
    color: #ffffff;
    cursor: pointer;
}