.elementor-4284 .elementor-element.elementor-element-f7b8abf{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-4284 .elementor-element.elementor-element-5192f78{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-e571491 */:root {
    --primary-brand: #3b82f6;
    --border-color: #dee2e6;
    --background-light: #f8f9fa;
    --secondary-gray: #6c757d;
    --danger: #ef4444;
    --success: #10b981;
    --diff-del-bg: #fee2e2;
    --diff-del-color: #b91c1c;
    --diff-ins-bg: #dcfce7;
    --diff-ins-color: #15803d;
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --shadow-subtle: 0 4px 12px rgba(0,0,0,0.05);
}

/* Base Styles */
body {font-family: sans-serif;margin: 0;padding: 0;background-color: var(--background-light);color: var(--text-primary);}
.container {max-width: 1200px;margin: 0 auto;padding: 20px;}
.hidden {display: none !important;}
.full-width {width: 100%;}
.text-danger { color: var(--danger) !important; }

/* Buttons */
.btn {padding: 0.75rem 1.5rem;border-radius: 6px;cursor: pointer;font-weight: 600;transition: background-color 0.2s, opacity 0.2s;text-decoration: none;display: flex;align-items: center;justify-content: center;text-align: center;border: 1px solid transparent;}
.btn-secondary {background: transparent;color: var(--secondary-gray);border: 1px solid var(--border-color);}
.btn-secondary:hover {background: #e9ecef;}
.btn-sm {padding: 5px 10px;font-size: 0.9rem;}
#compareBtn {background: var(--primary-brand); color: white;}
#compareBtn:hover {opacity: 0.9;}

/* Page Header (H1) */
.page-header {text-align: center;margin-bottom: 2rem;padding-top: 1rem;}
.page-header h1 {font-size: 2.5rem;margin-bottom: 0.5rem;color: var(--primary-brand);line-height: 1.2;}
.page-header p {color: var(--secondary-gray);font-size: 1.1rem;}

/* Tool Container */
.tool-container {background: white;padding: 2rem;border-radius: 8px;border: 1px solid var(--border-color);box-shadow: var(--shadow-subtle);}

/* Controls Header */
.diff-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--background-light);
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px 8px 0 0;
    border-bottom: none;
    flex-wrap: wrap;
    gap: 10px;
}

.control-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.control-group label { font-weight: 600; color: var(--text-primary); font-size: 0.95rem; }

.radio-group { display: flex; gap: 15px; }
.radio-group label { cursor: pointer; display: flex; align-items: center; gap: 5px; font-size: 0.9rem; color: var(--text-secondary);}
.radio-group input { accent-color: var(--primary-brand); }

/* Inputs Area */
.diff-inputs {
    display: flex;
    height: 400px;
    border: 1px solid var(--border-color);
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

.input-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.input-col:first-child { border-right: 1px solid var(--border-color); }

.col-header {
    background: var(--background-light);
    padding: 8px 15px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

textarea {
    flex: 1;
    border: none;
    padding: 15px;
    resize: none;
    font-family: 'Courier New', Courier, monospace; 
    font-size: 0.95rem;
    line-height: 1.5;
    outline: none;
    background: white;
    color: #333;
}

/* Action Bar */
.compare-action { margin: 2rem 0; }

/* Result Area */
.result-area {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-subtle);
}

.result-area h3 { margin: 0 0 1rem 0; font-size: 1.2rem; color: var(--primary-brand); }

.diff-legend {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: flex;
    gap: 15px;
}

.legend-item del { background: var(--diff-del-bg); color: var(--diff-del-color); padding: 2px 6px; text-decoration: none; border-radius: 4px; font-weight: 600; }
.legend-item ins { background: var(--diff-ins-bg); color: var(--diff-ins-color); padding: 2px 6px; text-decoration: none; border-radius: 4px; font-weight: 600; }

.diff-content {
    font-family: 'Courier New', Courier, monospace;
    white-space: pre-wrap; 
    line-height: 1.6;
    padding: 1.5rem;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    min-height: 100px;
    color: #334155;
    overflow-x: auto;
}

/* Actual Diff Styling inside content */
.diff-content del {
    background-color: var(--diff-del-bg);
    color: var(--diff-del-color);
    text-decoration: none;
    border-radius: 2px;
    padding: 0 2px;
    text-decoration: line-through;
    opacity: 0.8;
}

.diff-content ins {
    background-color: var(--diff-ins-bg);
    color: var(--diff-ins-color);
    text-decoration: none;
    border-radius: 2px;
    padding: 0 2px;
    font-weight: 600;
}

/* --- SEO/INFO SECTIONS STYLING --- */
.info-section {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    box-shadow: var(--shadow-subtle);
}

.info-section h3 {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
    font-size: 1.8rem;
    color: var(--primary-brand);
}

.info-section p { 
    font-size: 1.1rem; 
    line-height: 1.7; 
    color: var(--text-secondary); 
    text-align: justify;
    margin-bottom: 1.5rem;
}

.info-section p strong {
    font-weight: 700; 
    color: var(--text-primary);
}

/* Internal Link Styling */
.info-section p a, .how-to-list li a {
    color: var(--primary-brand);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed var(--primary-brand);
    transition: color 0.2s, border-bottom-color 0.2s;
}
.info-section p a:hover, .how-to-list li a:hover {
    color: #2563eb;
    border-bottom-color: #2563eb;
}

.how-to-list {
    padding-left: 20px; 
    margin-top: 1.5rem;
}

.how-to-list li {
    font-size: 1.1rem;
    line-height: 1.8; 
    margin-bottom: 1rem; 
    color: var(--text-secondary);
}
.how-to-list li strong {color: var(--text-primary);}

/* FAQ Styling */
.faq-item {
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-brand);
    padding-left: 1.5rem;
    padding-top: 5px;
}
.faq-item strong { /* Question */
    display: block; 
    margin-bottom: 0.5rem; 
    font-size: 1.25rem;
    color: var(--text-primary); 
}
.faq-item p { /* Answer */
    font-size: 1.1rem; 
    color: var(--text-secondary); 
    text-align: justify;
    padding-bottom: 0;
    margin-bottom: 0;
}


/* Responsive */
@media (max-width: 768px) {
    .diff-inputs { flex-direction: column; height: auto; }
    .input-col:first-child { border-right: none; border-bottom: 1px solid var(--border-color); }
    textarea { min-height: 200px; }
    .diff-controls { flex-direction: column; align-items: stretch; }
    .control-group { justify-content: space-between; }
    .actions { display: flex; justify-content: space-around; width: 100%; margin-top: 10px;}
    .btn-secondary { flex: 1; }

    .tool-container {padding: 1rem;}
    .result-area {padding: 1rem;}
    .diff-content {padding: 1rem;}
    .page-header h1 {font-size: 2rem;}

    /* Info Section Responsive */
    .info-section {padding: 1.5rem;}
    .info-section h3 {font-size: 1.4rem;}
    .info-section p, .how-to-list li, .faq-item p {font-size: 1rem;text-align: left;}
    .faq-item strong {font-size: 1.1rem;}
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b27b881 */<style>
/* --- Unified Bouncing Blue Links --- */
.utilix-bounce-links {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Inter', -apple-system, sans-serif;
}

.utilix-bounce-links h3 {
    font-size: 1.15rem;
    color: #1e293b;
    font-weight: 800;
    margin-bottom: 25px;
    text-align: left;
}

.links-flex {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 15px;
    align-items: center;
}

.bounce-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #2563eb;
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.2s ease;
}

@keyframes utilixSoftBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.bounce-link:hover {
    color: #1d4ed8; 
    animation: utilixSoftBounce 0.4s ease-in-out;
    text-decoration: underline;
}

.b-icon {
    font-size: 1.1rem;
    filter: grayscale(100%);
    transition: filter 0.2s ease;
}

.bounce-link:hover .b-icon {
    filter: grayscale(0%);
}

@media (max-width: 640px) {
    .links-flex { column-gap: 20px; }
    .bounce-link { font-size: 0.9rem; }
}
</style>/* End custom CSS */