.conv-wrap { max-width: 100%; margin: 0 auto; }

.conv-banner {
    background: #1e2a4a;
    color: #fff;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
}
.conv-banner-compact {
    padding: 10px 16px;
    font-size: 12.5px;
    margin-bottom: 12px;
    border-radius: 6px;
}

.conv-card {
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 20px;
}
.conv-card-compact {
    padding: 18px;
    margin-bottom: 10px;
    text-align: center;
}
.conv-card-compact #convGenerateRow {
    justify-content: center;
}
.conv-card-compact .conv-file-list {
    text-align: left;
}
.conv-card h2 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #1e2a4a;
    border-bottom: 2px solid #10b981;
    padding-bottom: 8px;
}
.conv-card h2.conv-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e2a4a;
    margin-bottom: 10px;
    border-bottom: none;
    padding-bottom: 0;
}

.conv-supported {
    font-size: 12px;
    color: #6b7280;
    margin: 0 0 10px;
}

.conv-dropzone {
    border: 2px dashed #d1d5db;
    border-radius: 10px;
    padding: 36px 20px;
    text-align: center;
    cursor: pointer;
    color: #6b7280;
    transition: border-color 0.15s, background 0.15s;
}
.conv-dropzone-compact {
    padding: 16px 16px;
}
.conv-dropzone:hover, .conv-dropzone.drag-over {
    border-color: #10b981;
    background: #f0fdf9;
    color: #10b981;
}
.conv-dropzone-text {
    margin-top: 6px;
    font-size: 13px;
    font-weight: 500;
}

.conv-file-list {
    margin-top: 12px;
    max-height: 160px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.conv-file-list:not(:empty) { margin-bottom: 12px; }
.conv-file-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 13px;
}
.conv-file-icon { color: #10b981; flex-shrink: 0; }
.conv-file-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #1f2937;
    font-weight: 500;
}
.conv-file-size { color: #9ca3af; font-size: 11.5px; flex-shrink: 0; }
.conv-file-remove {
    background: none;
    border: none;
    color: #dc2626;
    cursor: pointer;
    font-size: 15px;
    flex-shrink: 0;
    padding: 2px 6px;
}
.conv-file-status {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
    flex-shrink: 0;
}
.conv-file-status.pending { background: #f3f4f6; color: #6b7280; }
.conv-file-status.converting { background: #fef3c7; color: #92400e; }
.conv-file-status.done { background: #d1fae5; color: #065f46; }
.conv-file-status.error { background: #fee2e2; color: #b91c1c; }

.conv-combine-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #374151;
    margin-bottom: 14px;
    cursor: pointer;
}
.conv-combine-toggle input { cursor: pointer; }

.conv-partial-warning {
    background: #fffbeb !important;
    border-color: #fde68a !important;
    color: #92400e !important;
}

.conv-disclaimer {
    font-size: 11.5px;
    color: #9ca3af;
    line-height: 1.5;
}