/* ── Meta Tag Analyser + shared SEO tool styles ── */
.seo-input-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.seo-url-input {
    flex: 1;
    border: 2px solid rgba(3,29,54,.12);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
    outline: none;
    transition: border-color .2s;
    min-width: 0;
}

.seo-url-input:focus { border-color: var(--accent-color, #0A49A6); }

.seo-go-btn {
    margin: 0 !important;
    white-space: nowrap;
    padding-left: 20px;
    padding-right: 20px;
}

.seo-go-btn::before { display: none !important; }

/* SEO table */
.seo-table-wrap {
    overflow-x: auto;
    margin-top: 18px;
}

.seo-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.seo-table th {
    background: var(--primary-color, #031D36);
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.seo-table th:first-child { border-radius: 10px 0 0 0; }
.seo-table th:last-child  { border-radius: 0 10px 0 0; }

.seo-table td {
    padding: 9px 14px;
    border-bottom: 1px solid rgba(3,29,54,.06);
    vertical-align: top;
    color: var(--primary-color, #031D36);
}

.seo-table tr:last-child td { border-bottom: none; }
.seo-table tr:nth-child(even) td { background: rgba(3,29,54,.02); }
.seo-table tr:hover td { background: rgba(10,73,166,.04); }

.seo-table td:first-child {
    font-weight: 600;
    white-space: nowrap;
    color: #374151;
    font-family: monospace;
    font-size: 12px;
}

.seo-content-cell {
    word-break: break-word;
    max-width: 420px;
}

/* Status badges */
.seo-badge {
    display: inline-block;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.seo-badge-good    { background: rgba(74,222,128,.15); color: #166534; border: 1px solid rgba(74,222,128,.3); }
.seo-badge-missing { background: rgba(239,68,68,.1);   color: #991b1b; border: 1px solid rgba(239,68,68,.25); }
.seo-badge-warn    { background: rgba(251,191,36,.12); color: #92400e; border: 1px solid rgba(251,191,36,.3); }

/* Section headers within results */
.seo-section-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color, #031D36);
    margin: 22px 0 8px;
    padding-bottom: 6px;
    border-bottom: 2px solid rgba(3,29,54,.06);
    display: flex;
    align-items: center;
    gap: 8px;
}

.seo-section-title i { color: var(--accent-color, #0A49A6); }

/* Summary row */
.seo-summary {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.seo-summary-item {
    flex: 1;
    min-width: 90px;
    background: var(--secondary-color, #F8F8F8);
    border: 1px solid rgba(3,29,54,.07);
    border-radius: 12px;
    padding: 12px 14px;
    text-align: center;
}

.seo-summary-item span { display: block; font-size: 22px; font-weight: 700; color: var(--primary-color); }
.seo-summary-item small { font-size: 11px; color: #6b7a8d; }
