/* CRITICAL: Force background display for WordPress themes */
.mt-pmg-wrapper {
    all: initial !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    background: #ffffff !important;
    color: #1f2937 !important;
    line-height: 1.6 !important;
    width: 100% !important;
    display: block !important;
    position: relative !important;
    box-sizing: border-box !important;
}

.mt-pmg-wrapper * {
    box-sizing: border-box !important;
}

:root {
    --mt-pmg-primary-blue: hsl(207, 90%, 54%);
    --mt-pmg-primary-purple: hsl(258, 90%, 66%);
    --mt-pmg-primary-pink: hsl(328, 85%, 70%);
    --mt-pmg-success-green: hsl(158, 64%, 52%);
    --mt-pmg-warning-amber: hsl(43, 96%, 56%);
    --mt-pmg-error-red: hsl(0, 84%, 60%);
    --mt-pmg-light-gray: hsl(210, 40%, 98%);
    --mt-pmg-border-gray: hsl(210, 16%, 82%);
}

.mt-pmg-min-h-screen {
    min-height: 100vh;
}

.mt-pmg-py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.mt-pmg-px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.mt-pmg-bg-white {
    background-color: #ffffff;
}

.mt-pmg-max-w-7xl {
    max-width: 80rem;
}

.mt-pmg-mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mt-pmg-gradient-border-hover {
    background: #ffffff;
    border: 2px solid var(--mt-pmg-border-gray);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.mt-pmg-gradient-border-hover:hover {
    border: 3px solid transparent;
    background: linear-gradient(#ffffff, #ffffff) padding-box,
                linear-gradient(90deg, var(--mt-pmg-primary-blue), var(--mt-pmg-primary-purple), var(--mt-pmg-primary-pink)) border-box;
}

.mt-pmg-text-center {
    text-align: center;
}

.mt-pmg-mb-10 {
    margin-bottom: 2.5rem;
}

.mt-pmg-text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.mt-pmg-font-bold {
    font-weight: 700;
}

.mt-pmg-gradient-text {
    background: linear-gradient(90deg, var(--mt-pmg-primary-blue), var(--mt-pmg-primary-purple), var(--mt-pmg-primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mt-pmg-mb-4 {
    margin-bottom: 1rem;
}

.mt-pmg-text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.mt-pmg-text-gray-600 {
    color: #6b7280;
}

.mt-pmg-max-w-3xl {
    max-width: 48rem;
}

.mt-pmg-mb-8 {
    margin-bottom: 2rem;
}

.mt-pmg-upload-section {
    background: var(--mt-pmg-light-gray);
    border: 2px solid var(--mt-pmg-border-gray);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mt-pmg-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.mt-pmg-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mt-pmg-upload-limit {
    background: rgba(245, 158, 11, 0.2);
    color: var(--mt-pmg-warning-amber);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

.mt-pmg-upload-dropzone {
    border: 2px dashed var(--mt-pmg-primary-blue);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mt-pmg-upload-dropzone:hover {
    background: #f0f9ff;
    border-color: var(--mt-pmg-primary-purple);
    transform: translateY(-2px);
}

.mt-pmg-upload-dropzone.mt-pmg-dragover {
    background: #faf5ff;
    border-color: var(--mt-pmg-primary-purple);
    transform: scale(1.02);
}

.mt-pmg-upload-icon {
    font-size: 2.5rem;
    color: var(--mt-pmg-primary-blue);
    margin-bottom: 1rem;
    animation: mt-pmg-float 3s ease-in-out infinite;
}

@keyframes mt-pmg-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.mt-pmg-upload-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.mt-pmg-upload-desc {
    color: #6b7280;
    margin-bottom: 1rem;
}

.mt-pmg-btn {
    background: linear-gradient(135deg, var(--mt-pmg-primary-blue), var(--mt-pmg-primary-purple));
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.mt-pmg-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.mt-pmg-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.mt-pmg-btn-outline {
    background: white;
    color: var(--mt-pmg-primary-blue);
    border: 2px solid var(--mt-pmg-border-gray);
}

.mt-pmg-btn-outline:hover {
    border-color: var(--mt-pmg-primary-blue);
    background: #f0f9ff;
}

.mt-pmg-btn-destructive {
    background: var(--mt-pmg-error-red);
}

.mt-pmg-btn-destructive:hover {
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

.mt-pmg-pdf-queue-section {
    background: var(--mt-pmg-light-gray);
    border: 2px solid var(--mt-pmg-border-gray);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mt-pmg-info-box {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.mt-pmg-info-icon {
    color: var(--mt-pmg-primary-blue);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.mt-pmg-info-title {
    font-weight: 600;
    color: var(--mt-pmg-primary-blue);
    margin-bottom: 0.25rem;
}

.mt-pmg-info-desc {
    font-size: 0.875rem;
    color: #374151;
}

.mt-pmg-file-card {
    background: white;
    border: 2px solid var(--mt-pmg-border-gray);
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.mt-pmg-file-card:hover {
    border-color: var(--mt-pmg-primary-blue);
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.15);
}

.mt-pmg-drag-handle {
    color: #9ca3af;
    cursor: move;
}

.mt-pmg-drag-handle:hover {
    color: #6b7280;
}

.mt-pmg-pdf-thumbnail {
    width: 48px;
    height: 60px;
    border-radius: 0.375rem;
    border: 1px solid var(--mt-pmg-border-gray);
    object-fit: cover;
}

.mt-pmg-file-placeholder {
    width: 48px;
    height: 60px;
    background: #f3f4f6;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 1.5rem;
}

.mt-pmg-file-info {
    flex: 1;
    min-width: 0;
}

.mt-pmg-file-name {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mt-pmg-file-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.mt-pmg-file-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mt-pmg-page-range-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mt-pmg-page-range-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.mt-pmg-page-range-input {
    width: 4rem;
    padding: 0.375rem;
    border: 1px solid var(--mt-pmg-border-gray);
    border-radius: 0.375rem;
    text-align: center;
    font-size: 0.75rem;
}

.mt-pmg-page-range-input:focus {
    outline: none;
    border-color: var(--mt-pmg-primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.mt-pmg-remove-btn {
    background: none;
    border: none;
    color: var(--mt-pmg-error-red);
    cursor: pointer;
    padding: 0.375rem;
    border-radius: 0.375rem;
    transition: background 0.3s ease;
    font-size: 0.875rem;
    min-width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mt-pmg-remove-btn:hover {
    background: #fee2e2;
}

.mt-pmg-merge-settings {
    background: var(--mt-pmg-light-gray);
    border: 2px solid var(--mt-pmg-border-gray);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mt-pmg-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.mt-pmg-form-group {
    display: flex;
    flex-direction: column;
}

.mt-pmg-form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
}

.mt-pmg-form-input,
.mt-pmg-form-select {
    padding: 0.175rem;
    border: 2px solid var(--mt-pmg-border-gray);
    border-radius: 0.75rem;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s ease;
}

.mt-pmg-form-input:focus,
.mt-pmg-form-select:focus {
    outline: none;
    border-color: var(--mt-pmg-primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.mt-pmg-input-suffix {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: #6b7280;
}

.mt-pmg-merge-btn {
    background: linear-gradient(to right, var(--mt-pmg-primary-purple), var(--mt-pmg-primary-pink));
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mt-pmg-merge-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 20px 25px rgba(139, 92, 246, 0.3);
}

.mt-pmg-merge-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.mt-pmg-progress-section {
    background: var(--mt-pmg-light-gray);
    border: 2px solid var(--mt-pmg-border-gray);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mt-pmg-progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.mt-pmg-progress-label {
    font-weight: 500;
    color: #374151;
}

.mt-pmg-progress-percent {
    font-weight: 700;
    color: var(--mt-pmg-success-green);
}

.mt-pmg-progress-bar {
    width: 100%;
    height: 0.75rem;
    background: #e5e7eb;
    border-radius: 0.375rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.mt-pmg-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--mt-pmg-success-green), var(--mt-pmg-primary-blue));
    transition: width 0.5s ease;
    width: 0%;
}

.mt-pmg-status-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--mt-pmg-border-gray);
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mt-pmg-status-icon {
    color: var(--mt-pmg-primary-blue);
    animation: mt-pmg-spin 2s linear infinite;
}

@keyframes mt-pmg-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.mt-pmg-success-section {
    background: white;
    border: 2px solid var(--mt-pmg-border-gray);
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.mt-pmg-success-icon {
    width: 64px;
    height: 64px;
    background: var(--mt-pmg-success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.mt-pmg-success-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.mt-pmg-success-desc {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.mt-pmg-success-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.mt-pmg-download-btn {
    background: #3b82f6;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.mt-pmg-download-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.mt-pmg-merge-another-btn {
    background: white;
    color: #6b7280;
    border: 2px solid #e5e7eb;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.mt-pmg-merge-another-btn:hover {
    border-color: #d1d5db;
    background: #f9fafb;
}

.mt-pmg-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 30rem;
    margin: 0 auto;
}

.mt-pmg-stat-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--mt-pmg-border-gray);
    border-radius: 0.5rem;
    padding: 0.75rem;
    text-align: center;
}

.mt-pmg-stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.mt-pmg-stat-value.mt-pmg-blue { color: var(--mt-pmg-primary-blue); }
.mt-pmg-stat-value.mt-pmg-purple { color: var(--mt-pmg-primary-purple); }
.mt-pmg-stat-value.mt-pmg-pink { color: var(--mt-pmg-primary-pink); }

.mt-pmg-stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.mt-pmg-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.mt-pmg-feature-card {
    background: var(--mt-pmg-light-gray);
    border: 2px solid var(--mt-pmg-border-gray);
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
}

.mt-pmg-feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.mt-pmg-feature-icon.mt-pmg-blue { color: var(--mt-pmg-primary-blue); }
.mt-pmg-feature-icon.mt-pmg-purple { color: var(--mt-pmg-primary-purple); }
.mt-pmg-feature-icon.mt-pmg-pink { color: var(--mt-pmg-primary-pink); }
.mt-pmg-feature-icon.mt-pmg-green { color: var(--mt-pmg-success-green); }

.mt-pmg-feature-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.mt-pmg-feature-desc {
    font-size: 0.875rem;
    color: #6b7280;
}

.mt-pmg-hidden {
    display: none;
}

/* Drag and Drop Support */
.mt-pmg-file-card.mt-pmg-dragging {
    opacity: 0.8;
    transform: scale(0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    border-color: var(--mt-pmg-primary-blue);
}

.mt-pmg-file-card.mt-pmg-drag-over {
    border-color: var(--mt-pmg-primary-purple);
    background: #faf5ff;
    transform: translateY(-1px);
}

.mt-pmg-file-card {
    transition: all 0.15s ease;
}

.mt-pmg-move-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.mt-pmg-move-btn {
    background: white;
    border: 1px solid var(--mt-pmg-border-gray);
    border-radius: 0.375rem;
    width: 2rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.75rem;
    color: #6b7280;
}

.mt-pmg-move-btn:hover {
    background: #f3f4f6;
    border-color: var(--mt-pmg-primary-blue);
    color: var(--mt-pmg-primary-blue);
}

.mt-pmg-move-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mt-pmg-py-10 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .mt-pmg-px-6 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .mt-pmg-gradient-border-hover {
        padding: 1rem;
        border-radius: 0.75rem;
    }
    
    .mt-pmg-text-4xl {
        font-size: 1.75rem;
        line-height: 2rem;
    }
    
    .mt-pmg-text-xl {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    
    .mt-pmg-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .mt-pmg-section-title {
        font-size: 1.25rem;
    }
    
    .mt-pmg-upload-dropzone {
        padding: 1.5rem;
    }
    
    .mt-pmg-upload-icon {
        font-size: 2rem;
    }
    
    .mt-pmg-upload-title {
        font-size: 1.125rem;
    }
    
    .mt-pmg-form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mt-pmg-file-card {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .mt-pmg-file-info {
        min-width: 140px;
    }
    
    .mt-pmg-file-controls {
        flex-wrap: wrap;
        gap: 0.5rem;
        width: 100%;
        justify-content: space-between;
    }
    
    .mt-pmg-page-range-group {
        order: 1;
    }
    
    .mt-pmg-move-buttons {
        order: 2;
    }
    
    .mt-pmg-remove-btn {
        order: 3;
    }
    
    .mt-pmg-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .mt-pmg-feature-card {
        padding: 0.75rem;
    }
    
    .mt-pmg-feature-icon {
        font-size: 1.5rem;
    }
    
    .mt-pmg-stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .mt-pmg-success-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .mt-pmg-success-section {
        padding: 1.5rem 1rem;
    }
    
    .mt-pmg-success-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .mt-pmg-success-title {
        font-size: 1.25rem;
    }
    
    .mt-pmg-success-desc {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .mt-pmg-download-btn, .mt-pmg-merge-another-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.75rem;
    }
    
    .mt-pmg-merge-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .mt-pmg-stat-value {
        font-size: 1rem;
    }
    
    .mt-pmg-stat-card {
        padding: 0.5rem;
    }
    
    .mt-pmg-form-input, .mt-pmg-form-select {
        padding: 0.625rem;
        font-size: 0.875rem;
    }
    
    .mt-pmg-form-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .mt-pmg-gradient-border-hover {
        padding: 0.75rem;
    }
    
    .mt-pmg-upload-dropzone {
        padding: 0.875rem;
    }
    
    .mt-pmg-upload-icon {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .mt-pmg-upload-title {
        font-size: 1rem;
    }
    
    .mt-pmg-upload-desc {
        font-size: 0.75rem;
    }
    
    .mt-pmg-file-card {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .mt-pmg-pdf-thumbnail, .mt-pmg-file-placeholder {
        width: 36px;
        height: 45px;
    }
    
    .mt-pmg-file-placeholder {
        font-size: 1rem;
    }
    
    .mt-pmg-file-name {
        font-size: 0.75rem;
    }
    
    .mt-pmg-file-meta {
        font-size: 0.625rem;
    }
    
    .mt-pmg-page-range-input {
        width: 3.5rem;
        padding: 0.25rem;
        font-size: 0.625rem;
    }
    
    .mt-pmg-move-btn {
        min-width: 20px;
        height: 20px;
        font-size: 0.625rem;
        padding: 0.125rem 0.25rem;
    }
    
    .mt-pmg-remove-btn {
        min-width: 24px;
        height: 24px;
        font-size: 0.75rem;
        padding: 0.25rem;
    }
    
    .mt-pmg-features-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .mt-pmg-feature-card {
        padding: 0.5rem;
    }
    
    .mt-pmg-feature-icon {
        font-size: 1.25rem;
    }
    
    .mt-pmg-feature-title {
        font-size: 0.875rem;
    }
    
    .mt-pmg-feature-desc {
        font-size: 0.625rem;
    }
    
    .mt-pmg-text-4xl {
        font-size: 1.25rem;
        line-height: 1.5rem;
    }
    
    .mt-pmg-success-section {
        padding: 1rem 0.75rem;
    }
    
    .mt-pmg-success-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .mt-pmg-success-title {
        font-size: 1.125rem;
    }
    
    .mt-pmg-success-desc {
        font-size: 0.625rem;
    }
    
    .mt-pmg-download-btn, .mt-pmg-merge-another-btn {
        padding: 0.5rem 1rem;
        font-size: 0.625rem;
    }
    
    .mt-pmg-merge-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.75rem;
    }
    
    .mt-pmg-form-input, .mt-pmg-form-select {
        padding: 0.5rem;
        font-size: 0.75rem;
    }
    
    .mt-pmg-form-label {
        font-size: 0.625rem;
    }
}

.mt-pds-wrapper input,
.mt-pds-wrapper select,
.mt-pds-wrapper textarea,
.mt-pds-wrapper button {
  all: revert !important;
  font: inherit !important;
  color: inherit !important;
  padding: revert !important;
  border: revert !important;
  background: revert !important;
  width: auto !important;
  max-width: none !important;
}
