.nsc-checker {
    max-width: 600px;
    margin: 0 auto;
    font-family: inherit;
}

.nsc-field {
    margin-bottom: 14px;
}

.nsc-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--nsc-text-color, #222222);
}

.nsc-field input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em;
}

.nsc-submit {
    background: var(--nsc-button-bg, #1a73e8);
    color: var(--nsc-button-text, #ffffff);
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1em;
}

.nsc-submit:hover {
    filter: brightness(0.9);
}

.nsc-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.nsc-loading {
    margin-top: 16px;
    font-style: italic;
    color: #666;
}

.nsc-results {
    margin-top: 24px;
}

.nsc-score {
    font-size: 1.2em;
    margin-bottom: 16px;
    color: var(--nsc-text-color, #222222);
}

.nsc-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nsc-check {
    padding: 12px 14px;
    border-radius: 6px;
    margin-bottom: 10px;
    border-left: 4px solid #ccc;
    background: #f8f8f8;
}

.nsc-status-ok {
    border-left-color: #34a853;
    background: #e6f4ea;
}

.nsc-status-warning {
    border-left-color: #fbbc04;
    background: #fef7e0;
}

.nsc-status-error {
    border-left-color: #ea4335;
    background: #fce8e6;
}

.nsc-check-label {
    font-weight: 600;
    display: block;
    color: var(--nsc-text-color, #222222);
}

.nsc-issues {
    margin: 8px 0 0 0;
    padding-left: 20px;
    font-size: 0.92em;
    color: #444;
}

.nsc-error {
    color: #ea4335;
    font-weight: 600;
}

/* Bloc CTA : volontairement très visible pour maximiser la prise de contact */
.nsc-cta-box {
    margin-top: 28px;
    padding: 24px;
    border-radius: 10px;
    text-align: center;
    background: var(--nsc-cta-bg, #1a73e8);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.nsc-cta-message {
    margin: 0 0 16px 0;
    font-size: 1.15em;
    font-weight: 700;
    color: var(--nsc-cta-text, #ffffff);
}

.nsc-cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: var(--nsc-cta-text, #ffffff);
    color: var(--nsc-cta-bg, #1a73e8);
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.05em;
    transition: transform 0.15s ease;
}

.nsc-cta-button:hover {
    transform: scale(1.04);
    color: var(--nsc-cta-bg, #1a73e8);
}
