/* ══════════════════════════════════════════════════════════════════════════════
   GLOBAL THEME FIX: Make the entire page background white
   ══════════════════════════════════════════════════════════════════════════════ */
body, 
.wp-site-blocks, 
#page, 
#content, 
.site-content, 
.entry-content,
main.wp-block-group {
    background-color: #ffffff !important;
}

/* ══════════════════════════════════════════════════════════════════════════════ */

.wpmtg-container {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 30px;
    margin: 0 auto;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    color: #333;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

.wpmtg-container h2 {
    margin-top: 0;
    color: #1a365d;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 12px;
}

.wpmtg-container p.wpmtg-desc {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.wpmtg-form-group,
.wpmtg-row {
    margin-bottom: 15px;
}

.wpmtg-row {
    display: flex;
    gap: 20px;
}

.wpmtg-col {
    flex: 1;
}

.wpmtg-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
    color: #333;
}

.wpmtg-container .required {
    color: #d9534f;
}

.wpmtg-container input[type="text"],
.wpmtg-container input[type="number"],
.wpmtg-container textarea,
.wpmtg-container select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
    background: #fff;
    color: #333;
    outline: none;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .04);
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.wpmtg-container input[type="text"]:focus,
.wpmtg-container input[type="number"]:focus,
.wpmtg-container textarea:focus,
.wpmtg-container select:focus {
    border-color: #66afe9;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
}

.wpmtg-container input[type="checkbox"] {
    margin-right: 5px;
    vertical-align: middle;
    margin-top: 0;
    width: auto;
    height: auto;
    cursor: pointer;
}

.wpmtg-container .wpmtg-checkbox-label {
    font-weight: normal !important;
    display: inline-block !important;
    vertical-align: middle;
    margin-bottom: 0 !important;
    font-size: 14px !important;
}

#wpmtg-generate-btn {
    width: 100%;
    background-color: #ffc107;
    color: #212529;
    border: 1px solid transparent;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
    margin-bottom: 25px;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

#wpmtg-generate-btn:hover {
    background-color: #e0a800;
    border-color: #d39e00;
}

/* Result section */
.wpmtg-result-section {
    background: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
}

.wpmtg-result-section>label {
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    display: block;
}

#wpmtg-result {
    background: #e9ecef;
    color: #495057;
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    cursor: text;
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-shadow: none;
    padding: 10px;
    font-size: 13px;
    line-height: 1.5;
}

#wpmtg-result:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

#wpmtg-copy-btn {
    background-color: #e2e6ea;
    color: #212529;
    border: 1px solid #dae0e5;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
    font-size: 14px;
    font-weight: normal;
}

#wpmtg-copy-btn:hover {
    background-color: #d3d9df;
    border-color: #c6cdd4;
}

@media (max-width: 768px) {
    .wpmtg-row {
        flex-direction: column;
        gap: 15px;
    }
}

/* Google Maps Embed Generator - V2 Premium Redesign */
.wpmaps-v2-main-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.wpmaps-v2-container {
    display: flex;
    gap: 30px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
}

.wpmaps-v2-ctrl-panel {
    flex: 0 0 340px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    border: 1px solid #eee;
}

.wpmaps-v2-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.wpmaps-v2-logo img {
    display: block;
    object-fit: contain;
}

.wpmaps-v2-header h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #444;
}

.wpmaps-v2-field {
    margin-bottom: 22px;
}

.wpmaps-v2-field label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #555;
    margin-bottom: 10px;
}

.wpmaps-v2-input-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.wpmaps-v2-input-icon svg {
    position: absolute;
    left: 12px;
    opacity: 0.5;
}

.wpmaps-v2-input-icon input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid #dde1e5;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    color: #333;
    transition: border-color 0.2s;
}

.wpmaps-v2-input-icon input:focus {
    border-color: #3498db;
    outline: none;
}

.wpmaps-v2-select-wrapper select {
    width: 100%;
    padding: 12px;
    border: 1px solid #dde1e5;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.wpmaps-v2-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #e1e8ef;
    border-radius: 5px;
    outline: none;
    margin: 15px 0;
}

.wpmaps-v2-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #3498db;
    border: 3px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(52, 152, 219, 0.3);
}

.wpmaps-v2-dim-grid {
    display: flex;
    gap: 15px;
}

.wpmaps-v2-num-box {
    display: flex;
    align-items: center;
    border: 1px solid #dde1e5;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.wpmaps-v2-num-box input {
    width: 100%;
    border: none;
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.wpmaps-v2-num-box span {
    background: #f1f4f6;
    padding: 8px 10px;
    font-size: 12px;
    color: #888;
    border-left: 1px solid #dde1e5;
}

.wpmaps-v2-toggle-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 25px 0;
}

.wpmaps-v2-toggle-row span {
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

/* Toggle Switch Styling */
.wpmaps-v2-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.wpmaps-v2-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.wpmaps-v2-slider-round {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.wpmaps-v2-slider-round:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.wpmaps-v2-switch input:checked + .wpmaps-v2-slider-round {
    background-color: #3498db;
}

.wpmaps-v2-switch input:checked + .wpmaps-v2-slider-round:before {
    transform: translateX(20px);
}

#wpmaps-v2-generate-btn {
    width: 100%;
    padding: 16px;
    background: #2ecc71;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.1s;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.2);
}

#wpmaps-v2-generate-btn:active {
    transform: scale(0.98);
}

.wpmaps-v2-preview-panel {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.wpmaps-v2-preview-box {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.wpmaps-v2-preview-box iframe {
    width: 600px;
    height: 400px;
    border: none;
    transition: all 0.3s ease;
}

/* Modal Styling */
.wpmaps-v2-modal {
    position: fixed;
    z-index: 10000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wpmaps-v2-modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.wpmaps-v2-close {
    position: absolute;
    right: 25px; top: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #aaa;
}

.wpmaps-v2-modal-content h3 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 24px;
}

.wpmaps-v2-modal-content textarea {
    width: 100%;
    height: 180px;
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fdfdfd;
    font-family: monospace;
    font-size: 13px;
    color: #444;
}

#wpmaps-v2-copy-btn {
    width: 100%;
    padding: 14px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

/* Responsiveness */
@media (max-width: 900px) {
    .wpmaps-v2-container {
        flex-direction: column;
    }
    .wpmaps-v2-ctrl-panel {
        flex: 1;
    }
}

/* SEO Content Section */
.wpmaps-seo-content {
    margin-top: 60px;
    padding: 40px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    line-height: 1.8;
    color: #334155;
    font-size: 16px;
}

.wpmaps-seo-content h2 {
    font-size: 32px;
    color: #0f172a;
    margin-bottom: 25px;
    font-weight: 850;
    letter-spacing: -0.8px;
    text-align: left !important;
}

.wpmaps-seo-content h3 {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 18px;
    margin-top: 45px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.wpmaps-seo-content p {
    margin-bottom: 20px;
    font-size: 16.5px;
    color: #475569;
}

.wpmaps-seo-content ul, 
.wpmaps-seo-content ol {
    margin-bottom: 30px;
    margin-left: 0;
    padding-left: 20px;
}

.wpmaps-seo-content li {
    margin-bottom: 12px;
    padding-left: 5px;
}

.wpmaps-faq-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.wpmaps-faq-item:last-child {
    border-bottom: none;
}

.wpmaps-faq-item h4 {
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .wpmaps-layout {
        flex-direction: column;
    }
    
    .wpmaps-right {
        position: static;
        width: 100%;
        box-sizing: border-box;
    }
    
    .wpmaps-preview-box {
        height: 350px;
    }
}





/* ---------- UNIFIED HASHTAG GENERATORS STYLING ---------- */
div[class$="-container"] {
    background: #f0f2f5;
    padding: 40px;
    margin: 20px auto;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    color: #1c1e21;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    border-radius: 8px;
    text-align: center;
}

div[class$="-social-icons"] {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

/* Icons styling */
div[class*="-social-icons"] span[class*="-icon"] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    opacity: 0.4;
    transition: all 0.2s ease-in-out;
}

div[class*="-social-icons"] span[class*="-icon"]:hover {
    opacity: 0.8;
}

div[class*="-social-icons"] span[class*="-icon"].active {
    opacity: 1;
    filter: none;
    transform: scale(1.1);
}

div[class*="-social-icons"] span[class*="-icon"] img {
    height: 40px;
    width: 40px;
    display: block;
    object-fit: contain;
}

div[class$="-container"] h2 {
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
    margin-top: 0;
}

p[class$="-subtitle"] {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

div[class$="-form-group"],
div[class$="-output-group"] {
    text-align: left;
    margin-bottom: 20px;
}

div[class$="-form-group"] label,
div[class$="-output-header"] label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #444;
    margin-bottom: 8px;
}

div[class$="-form-group"] input,
div[class$="-form-group"] select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    background: #fff;
    color: #333;
    transition: border-color 0.2s;
}

div[class$="-form-group"] input:focus,
div[class$="-form-group"] select:focus {
    border-color: #3b82f6;
    outline: none;
}

/* Button Colors unified for all platforms */
button[id$="-generate-btn"] {
    width: 100%;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 30px;
    transition: background-color 0.2s;
    background-color: #1877f2;
}

button[id$="-generate-btn"]:hover {
    background-color: #145dbf;
}

div[class$="-output-header"] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

button[id$="-copy-btn"] {
    background: #fff;
    border: 1px solid #cbd5e0;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

button[id$="-copy-btn"]:hover {
    background: #f0f7ff;
}

textarea[id$="-result"] {
    width: 100%;
    padding: 15px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    background: #fff;
    color: #333;
    line-height: 1.6;
    resize: vertical;
}

div[class$="-footer-link"] {
    margin-top: 20px;
}

div[class$="-footer-link"] a {
    color: #1877f2;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

div[class$="-footer-link"] a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    div[class$="-container"] {
        padding: 20px;
    }

    div[class$="-container"] h2 {
        font-size: 24px;
    }

    div[class$="-social-icons"] {
        gap: 10px;
    }

    div[class*="-social-icons"] span[class*="-icon"] {
        width: 35px;
        height: 35px;
    }

    div[class*="-social-icons"] span[class*="-icon"] img {
        width: 35px;
        height: 35px;
    }
}

\n

/* ---------- ARTICLE SCHEMA GENERATOR STYLING ---------- */
.schema-gen-container {
    background: #ffffff;
    padding: 40px;
    margin: 30px auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.schema-gen-container .schema-main-title {
    text-align: left;
    color: #1a365d;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    margin-top: 0;
}

.schema-gen-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.schema-gen-left {
    flex: 1.2;
    min-width: 320px;
}

.schema-gen-right {
    flex: 1;
    min-width: 320px;
    background: #f8fafc;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.schema-info-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9f9f9;
    padding: 12px 15px;
    border-radius: 6px;
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
}

.schema-info-banner svg {
    flex-shrink: 0;
    color: #888;
}

.schema-form-group {
    margin-bottom: 22px;
}

.schema-form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}

.schema-form-group label svg {
    color: #444;
}

.schema-form-group .required {
    color: #e53e3e;
    font-weight: bold;
}

.schema-form-group input,
.schema-form-group select,
.schema-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e5ea;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    background: #fdfdfd;
    color: #333;
    transition: all 0.2s;
}

.schema-form-group input:focus,
.schema-form-group select:focus,
.schema-form-group textarea:focus {
    border-color: #3b82f6;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.schema-help {
    font-size: 13px;
    color: #888;
    margin-top: 6px;
    font-style: italic;
}

.schema-badges {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 25px;
    flex-wrap: wrap;
    gap: 10px;
}

.schema-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #e3f2fd;
    color: #1a73e8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.schema-badge span {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    line-height: 1.2;
}

.schema-output-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.schema-output-header h2 {
    font-size: 26px;
    font-weight: 800;
    color: #1c1e21;
    margin: 0;
}

#schema-copy-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    transition: color 0.2s;
}

#schema-copy-btn:hover {
    color: #1877f2;
}

#schema-result {
    width: 100%;
    flex: 1;
    min-height: 500px;
    padding: 20px;
    border: 1px solid #e1e5ea;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
    background: #ffffff;
    color: #333;
    line-height: 1.6;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    resize: none;
}

@media (max-width: 768px) {
    .schema-gen-container {
        padding: 20px;
    }

    .schema-gen-row {
        flex-direction: column;
        gap: 30px;
    }

    .schema-gen-left {
        padding-right: 0;
    }

    #schema-result {
        min-height: 350px;
    }
}



/* ---------- PREMIUM SEO AUDIT TOOL STYLING (REMAKING) ---------- */
.seo-audit-glass {
    --primary: #3b82f6;
    --primary-glow: rgba(59, 130, 246, 0.5);
    --secondary: #10b981;
    --accent: #f59e0b;
    --bg-dark: #0f172a;
    --text-main: #1e293b;
    --text-muted: #64748b;
    
    background: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-main);
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    min-height: 400px;
}

.seo-aud-hero-v2 {
    padding: 80px 20px;
    text-align: center;
    background: radial-gradient(circle at top right, #f8fafc, #ffffff);
}

.seo-badge {
    display: inline-block;
    padding: 6px 12px;
    background: #eff6ff;
    color: var(--primary);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.seo-aud-title-v2 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 15px;
    color: #0f172a;
}

.glow-text {
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary-glow);
}

.seo-aud-strapline {
    font-size: 19px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Modern Input */
.seo-input-container {
    max-width: 650px;
    margin: 0 auto;
}

.seo-input-wrapper {
    display: flex;
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 8px;
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    align-items: center;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.seo-input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.search-icon {
    margin-left: 15px;
    color: #94a3b8;
}

.seo-input-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 15px;
    font-size: 17px;
    outline: none;
    color: #1e293b;
    font-weight: 500;
}

.seo-input-wrapper button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.seo-input-wrapper button:hover {
    background: #2563eb;
    transform: scale(1.02);
}

.seo-input-labels {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

/* Scanning Phase */
#seo-scanning-state {
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
}

.scanning-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 2px solid #f1f5f9;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.inner-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    animation: pulse-glow 2s infinite ease-in-out;
}

.scanner-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
    top: 50%;
    animation: scan-move 2.5s infinite linear;
}

@keyframes scan-move {
    0% { top: 10%; opacity: 0; }
    50% { top: 50%; opacity: 1; }
    100% { top: 90%; opacity: 0; }
}

@keyframes pulse-glow {
    0% { transform: scale(0.8); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
    100% { transform: scale(0.8); opacity: 0.3; }
}

.scan-percentage {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-main);
    z-index: 2;
}

.scan-log {
    max-width: 400px;
    width: 100%;
}

.scan-step {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}

.scan-step::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
}

.scan-step.waiting {
    opacity: 0.4;
    filter: grayscale(1);
}

.scan-step.waiting::before {
    background: #cbd5e1;
    content: "";
}

/* Dashboard V2 */
#seo-dashboard-v2 {
    padding: 40px;
    background: #f8fafc;
}

.res-score-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.score-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #eef2f6;
    display: flex;
    align-items: center;
    gap: 30px;
}

.score-ring {
    position: relative;
    width: 140px;
    height: 140px;
}

.score-ring svg {
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: #f1f5f9;
    stroke-width: 12;
}

.ring-fg {
    fill: none;
    stroke: var(--primary);
    stroke-width: 12;
    stroke-linecap: round;
}

.score-val {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    font-weight: 900;
}

.score-meta h3 {
    margin: 0 0 5px 0;
    font-size: 20px;
    font-weight: 800;
}

.score-meta p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.score-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.metric-mini {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #eef2f6;
    text-align: center;
}

.metric-mini .lbl {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.metric-mini .val {
    font-size: 32px;
    font-weight: 900;
    margin-top: 10px;
}

.metric-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 5px;
}

.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot.green { background: #10b981; box-shadow: 0 0 10px rgba(16, 185, 129, 0.4); }
.dot.orange { background: #f59e0b; box-shadow: 0 0 10px rgba(245, 158, 11, 0.4); }
.scan-step.done {
    opacity: 1;
    filter: none;
    color: var(--secondary);
    font-weight: 700;
}

.scan-step.done::before {
    background: var(--secondary);
    content: "✓";
}

.info-row {
    margin-top: -5px;
    margin-bottom: 12px;
    padding-left: 2px;
}

.sub-text.italic {
    font-size: 12px;
    font-style: italic;
    color: #94a3b8;
    line-height: 1.4;
    word-break: break-all;
    display: block;
}

.status-pill {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
    background: #f1f5f9;
    color: #475569;
}

.status-check {
    background: #ecfdf5;
    color: #059669;
}

.status-fail {
    background: #fef2f2;
    color: #ef4444;
}

.dashboard-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eef2f6;
    display: flex;
    justify-content: flex-end;
}

.btn-dashboard-action {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: 0.2s;
}

.reset-btn {
    background: #f1f5f9;
    color: #475569;
}

.reset-btn:hover {
    background: #e2e8f0;
}

@media (max-width: 600px) {
    #seo-dashboard-v2 {
        padding: 20px;
    }
    .res-score-row, .res-details-grid {
        grid-template-columns: 1fr;
    }
}
