/* ============================================
   INDEXABILITY-CHECKER.HTML
   ============================================ */

.main-content-no-padding {
    padding-top: 0 !important;
}

.idx-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 50px;
}

.idx-card {
    background: var(--surface);
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 4px 4px 0 #1a1a1a;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.idx-card:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #1a1a1a;
}

.idx-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: -24px -24px 16px -24px;
    padding: 12px 16px;
    border-bottom: 2px solid #1a1a1a;
    border-radius: 6px 6px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.idx-card-url {
    background: #e0d4fc;
}

.idx-card-url .idx-card-title {
    background: #e0d4fc;
}

.idx-card-results {
    background: #b8f0ef;
}

.idx-card-results .idx-card-title {
    background: #b8f0ef;
}

.idx-help {
    margin: 0 0 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.idx-input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    box-shadow: 2px 2px 0 #1a1a1a;
    background: #fff;
    font: inherit;
    margin: 0 0 12px;
}

.idx-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.idx-verdict {
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    box-shadow: 2px 2px 0 #1a1a1a;
    padding: 16px 18px;
    margin-bottom: 14px;
    font-weight: 800;
    font-size: 1.25rem;
    background: #b8f0ef;
}

.idx-verdict-noindex {
    background: #ffd6b8;
}

.idx-verdict-blocked {
    background: #f8f0b8;
}

.idx-reason {
    margin: 0 0 14px;
    font-size: 0.95rem;
}

.idx-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.idx-step {
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    box-shadow: 2px 2px 0 #1a1a1a;
    padding: 10px 12px;
    background: #fff;
}

.idx-step-fail {
    background: #ffe8d6;
}

.idx-step strong {
    display: block;
    margin-bottom: 4px;
}

.idx-issues {
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    box-shadow: 2px 2px 0 #1a1a1a;
    padding: 12px 14px;
    background: #fff;
}

.idx-issues ul {
    margin: 8px 0 0;
    padding-left: 1.2rem;
}

.idx-empty {
    margin: 0;
}

.page-indexability-checker .gradient-text-green,
.page-indexability-checker .gradient-text-blue,
.page-indexability-checker .gradient-text-purple {
    background: none !important;
    -webkit-text-fill-color: unset !important;
}

.page-indexability-checker .gradient-text-green { color: #047857 !important; }
.page-indexability-checker .gradient-text-blue { color: #1d4ed8 !important; }
.page-indexability-checker .gradient-text-purple { color: #6d28d9 !important; }

@media (prefers-color-scheme: dark) {
    .idx-card,
    .idx-input,
    .idx-verdict,
    .idx-step,
    .idx-issues {
        border-color: #f0ede8;
        box-shadow: 4px 4px 0 #f0ede8;
    }
    .idx-input,
    .idx-step,
    .idx-issues {
        background: #1e1e1e;
        color: #f0ede8;
    }
    .idx-card-url,
    .idx-card-url .idx-card-title { background: rgba(224, 212, 252, 0.14); }
    .idx-card-results,
    .idx-card-results .idx-card-title { background: rgba(184, 240, 239, 0.12); }
    .idx-verdict { background: rgba(184, 240, 239, 0.16); }
    .idx-verdict-noindex { background: rgba(255, 214, 184, 0.18); }
    .idx-verdict-blocked { background: rgba(248, 240, 184, 0.16); }
    .idx-step-fail { background: rgba(255, 214, 184, 0.14); }
}
