/* File upload styles */
.file-upload-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.file-name {
    color: var(--text-secondary);
    font-size: 14px;
    flex: 1;
    min-width: 120px;
    word-break: break-word;
    font-weight: 500;
}

.or-divider {
    text-align: center;
    margin: 18px 0;
    color: var(--text-muted);
    font-weight: 600;
    position: relative;
    font-size: 14px;
}

.or-divider::before,
.or-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: var(--border-color);
}

.or-divider::before {
    left: 0;
}

.or-divider::after {
    right: 0;
}

.image-preview {
    margin-top: 18px;
    display: none;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    padding: 12px;
}

.image-preview img {
    max-width: 100%;
    max-height: 350px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.image-preview p {
    text-align: center;
    color: var(--text-secondary);
    padding: 20px;
    margin: 0;
}

