/* ============================================
   DomainPulse — Main Stylesheet
   ============================================ */

/* -- Reset & Base -- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Background & Surface */
    --bg-primary: #0b0e14;
    --bg-secondary: #111723;
    --bg-card: #161d2d;
    --bg-card-hover: #1c2540;
    --bg-elevated: #1a2236;

    /* Text */
    --text-primary: #e8ecf4;
    --text-secondary: #8b95a8;
    --text-muted: #5a6478;
    --text-accent: #60a5fa;

    /* Accent / Brand */
    --accent: #6366f1;
    --accent-light: #818cf8;
    --accent-glow: rgba(99, 102, 241, 0.25);
    --accent-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a78bfa 100%);

    /* Status */
    --color-ok: #10b981;
    --color-ok-bg: rgba(16, 185, 129, 0.08);
    --color-warn: #f59e0b;
    --color-warn-bg: rgba(245, 158, 11, 0.08);
    --color-fail: #ef4444;
    --color-fail-bg: rgba(239, 68, 68, 0.08);
    --color-info: #6366f1;
    --color-info-bg: rgba(99, 102, 241, 0.08);

    /* Borders */
    --border: rgba(255, 255, 255, 0.06);
    --border-subtle: rgba(255, 255, 255, 0.03);
    --border-accent: rgba(99, 102, 241, 0.3);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Font */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;

    /* Sizing */
    --container-max: 960px;
    --header-height: 64px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--text-accent);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--accent-light);
}

code {
    font-family: var(--font-mono);
    font-size: 0.88em;
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-light);
    padding: 2px 7px;
    border-radius: 5px;
}

.mono {
    font-family: var(--font-mono);
    font-size: 0.87em;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* -- Header -- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    display: flex;
    align-items: center;
    background: rgba(11, 14, 20, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.logo:hover {
    color: var(--text-primary);
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: var(--accent-gradient);
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    color: white;
}




.nav-link {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--text-primary);
}

/* -- Hero (Homepage) -- */
.hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 50% 20%, rgba(99, 102, 241, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 400px 300px at 30% 60%, rgba(139, 92, 246, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 400px 300px at 70% 70%, rgba(16, 185, 129, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: var(--accent-glow);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-light);
    letter-spacing: 0.02em;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* -- Search Form -- */
.search-form {
    max-width: 620px;
    margin: 0 auto 48px;
}

.search-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 6px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.search-wrapper:focus-within {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.search-wrapper--compact {
    max-width: 480px;
    margin: 24px auto 0;
    border-radius: var(--radius-md);
    padding: 4px;
}

.search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px 0 14px;
    color: var(--text-muted);
}

.search-input {
    flex: 1;
    border: none;
    background: none;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-primary);
    padding: 14px 4px;
    outline: none;
    min-width: 0;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 28px;
    background: var(--accent-gradient);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    white-space: nowrap;
}

.search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.search-btn:active {
    transform: translateY(0);
}

.search-btn--compact {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 10px;
}

.btn-icon {
    font-size: 1.1em;
    transition: transform 0.2s;
}

.search-btn:hover .btn-icon {
    transform: translateX(3px);
}

.search-error {
    margin-top: 12px;
    padding: 10px 16px;
    background: var(--color-fail-bg);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-sm);
    color: var(--color-fail);
    font-size: 0.9rem;
    font-weight: 500;
}

/* -- Feature Pills -- */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: background 0.2s, border-color 0.2s;
}

.feature-pill:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-accent);
}

.pill-icon {
    font-size: 1.05em;
}

/* -- Info Section -- */
.info-section {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.info-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.info-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--accent-gradient);
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.info-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* -- Footer -- */
.site-footer {
    margin-top: auto;
    padding: 32px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.footer-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
}

/* ============================================
   REPORT PAGE
   ============================================ */

/* -- Report Hero -- */
.report-hero {
    padding: 48px 0 32px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.report-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.report-header-left {
    flex: 1;
    min-width: 0;
}

.back-link {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 8px;
    display: inline-block;
}

.back-link:hover {
    color: var(--accent-light);
}

.report-domain {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    word-break: break-all;
    margin-bottom: 8px;
}

.report-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-cache {
    background: rgba(99, 102, 241, 0.15);
    color: var(--accent-light);
}

.badge-time {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
}

/* -- Score Ring -- */
.score-ring {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.score-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.score-bg {
    fill: none;
    stroke: var(--border);
    stroke-width: 8;
}

.score-progress {
    fill: none;
    stroke: var(--score-color, var(--accent));
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: calc(2 * 3.14159 * 52);
    stroke-dashoffset: calc(2 * 3.14159 * 52 * (1 - var(--progress, 0) / 100));
    transition: stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.score-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.score-grade {
    font-size: 2rem;
    font-weight: 800;
    color: var(--score-color, var(--accent));
    line-height: 1;
}

.score-number {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 2px;
}

/* -- Score Bars -- */
.score-bars {
    padding: 32px 0;
    background: var(--bg-primary);
}

.score-bar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.score-bar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
}

.score-bar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.score-bar-icon {
    font-size: 1.1em;
}

.score-bar-label {
    flex: 1;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
}

.score-bar-value {
    font-size: 1.1rem;
    font-weight: 800;
    font-family: var(--font-mono);
}

.score-bar-track {
    height: 6px;
    background: var(--border);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 12px;
}

.score-bar-fill {
    height: 100%;
    border-radius: var(--radius-full);
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.score-bar-counts {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.count-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: var(--radius-full);
}

.count-ok {
    background: var(--color-ok-bg);
    color: var(--color-ok);
}

.count-warn {
    background: var(--color-warn-bg);
    color: var(--color-warn);
}

.count-fail {
    background: var(--color-fail-bg);
    color: var(--color-fail);
}

.count-info {
    background: var(--color-info-bg);
    color: var(--color-info);
}

/* -- Findings -- */
.findings-section {
    padding: 48px 0 24px;
}

.findings-group {
    margin-bottom: 48px;
}

.findings-group-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.fgt-icon {
    font-size: 1.1em;
}

.finding-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.finding-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.finding-ok {
    border-left: 3px solid var(--color-ok);
}

.finding-warn {
    border-left: 3px solid var(--color-warn);
}

.finding-fail {
    border-left: 3px solid var(--color-fail);
}

.finding-info {
    border-left: 3px solid var(--color-info);
}

.finding-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px 8px;
}

.finding-badge {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    border: 1px solid;
    text-transform: uppercase;
}

.finding-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    padding-top: 1px;
}

.finding-body {
    padding: 0 20px 16px;
    padding-left: calc(20px + 0px);
    /* Align with title */
}

.finding-detail {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    word-break: break-word;
}

.finding-fix {
    margin-top: 12px;
    padding: 12px 16px;
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: var(--radius-sm);
}

.fix-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-light);
    display: block;
    margin-bottom: 4px;
}

.finding-fix p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* -- Raw Records -- */
.raw-records {
    padding: 24px 0 80px;
    border-top: 1px solid var(--border);
}

.raw-records .section-title {
    margin-bottom: 32px;
}

.record-table-wrap {
    margin-bottom: 28px;
}

.record-type-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    padding-left: 4px;
}

.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.record-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.record-table th {
    text-align: left;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-elevated);
}

.record-table td {
    padding: 10px 16px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
    vertical-align: top;
}

.record-table tr:last-child td {
    border-bottom: none;
}

.record-table tbody tr:hover td {
    background: rgba(99, 102, 241, 0.03);
}

.record-value {
    max-width: 480px;
    word-break: break-all;
}

/* -- Report Search (inline) -- */
.report-search {
    margin-top: 24px;
}

/* ============================================
   LOADING STATE
   ============================================ */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 14, 20, 0.92);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================
   ERROR PAGE
   ============================================ */
.error-page {
    padding: 120px 0;
    text-align: center;
}

.error-page h1 {
    font-size: 4rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.error-page p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 50px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .score-bar-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .report-header {
        flex-direction: column;
        text-align: center;
    }

    .report-header-left {
        text-align: center;
    }

    .report-meta {
        justify-content: center;
    }

    .search-btn {
        padding: 12px 18px;
    }

    .search-input {
        font-size: 0.9rem;
    }

    .finding-header {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-features {
        gap: 8px;
    }

    .feature-pill {
        font-size: 0.78rem;
        padding: 6px 12px;
    }

    .search-wrapper {
        flex-direction: column;
        padding: 4px;
    }

    .search-icon {
        display: none;
    }

    .search-input {
        width: 100%;
        padding: 14px 12px;
        text-align: center;
    }

    .search-btn {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }
}

/* -- Animations -- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.finding-card {
    animation: fadeInUp 0.4s ease both;
}

.finding-card:nth-child(1) {
    animation-delay: 0.05s;
}

.finding-card:nth-child(2) {
    animation-delay: 0.1s;
}

.finding-card:nth-child(3) {
    animation-delay: 0.15s;
}

.finding-card:nth-child(4) {
    animation-delay: 0.2s;
}

.finding-card:nth-child(5) {
    animation-delay: 0.25s;
}

.finding-card:nth-child(6) {
    animation-delay: 0.3s;
}

.finding-card:nth-child(7) {
    animation-delay: 0.35s;
}

.finding-card:nth-child(8) {
    animation-delay: 0.4s;
}

.finding-card:nth-child(9) {
    animation-delay: 0.45s;
}

.finding-card:nth-child(10) {
    animation-delay: 0.5s;
}

.score-bar-card {
    animation: fadeInUp 0.5s ease both;
}

.score-bar-card:nth-child(1) {
    animation-delay: 0.1s;
}

.score-bar-card:nth-child(2) {
    animation-delay: 0.2s;
}

.score-bar-card:nth-child(3) {
    animation-delay: 0.3s;
}

.rate-limit-page {
    padding: 120px 0;
    text-align: center;
}

.rate-limit-page h1,
.error-page h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-warn);
    margin-bottom: 16px;
}

.rate-limit-page p,
.error-page p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 24px;
}

.error-page {
    padding: 120px 0;
    text-align: center;
}

.error-page h1 {
    color: var(--color-fail);
}

/* -- Language Switcher -- */
.lang-switcher {
    display: flex;
    gap: 4px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 3px;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 28px;
    padding: 0 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    border-radius: calc(var(--radius-sm) - 2px);
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.lang-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

.lang-active {
    background: var(--accent-gradient);
    color: #fff !important;
    cursor: default;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* -- DKIM Selector Form -- */
.dkim-selector-section {
    padding: 0 0 20px;
}

.dkim-selector-form {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.dkim-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
}

.search-wrapper--dkim {
    max-width: 420px;
}

.search-wrapper--dkim .search-input {
    font-size: 0.85rem;
    padding: 10px 16px;
}

.search-wrapper--dkim .search-btn {
    font-size: 0.8rem;
    padding: 10px 16px;
}

/* -- Responsive adjustments for lang switcher -- */
@media (max-width: 640px) {
    .header-nav {
        gap: 10px;
    }

    .lang-btn {
        min-width: 30px;
        padding: 0 6px;
        font-size: 0.7rem;
    }

    .dkim-selector-form {
        flex-direction: column;
        align-items: stretch;
    }

    .search-wrapper--dkim {
        max-width: 100%;
    }
}