.file-input-i18n {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.85rem;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    background: #f9fafb;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.file-input-i18n:hover {
    border-color: #fe6a07;
    background: #fef3e7;
}

.file-input-i18n__button {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #d1d5db;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
    pointer-events: none;
}

.file-input-i18n__name {
    flex: 1 1 auto;
    min-width: 0;
    color: #6b7280;
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-input-i18n__input {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.file-input-i18n:focus-within {
    border-color: #fe6a07;
    box-shadow: 0 0 0 0.2rem rgba(254, 106, 7, 0.15);
}

.vpf-kept-file,
.vpf-file-preview {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
    padding: 0.65rem 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f8fafc;
    font-size: 0.875rem;
    color: #374151;
}

.vpf-kept-file img,
.vpf-file-preview img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.vpf-file-preview[hidden] {
    display: none !important;
}
