/* ===========================================
   Thank You Page — LMX License Manager
   Paleta neutra (cinza/preto)
   =========================================== */

.wclm-thankyou {
    margin: 40px 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .08), 0 4px 12px rgba(0, 0, 0, .04);
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
    color: #333333;
    line-height: 1.5;
    box-sizing: border-box;
    max-width: 100%;
}

.wclm-thankyou a {
    color: inherit;
    text-decoration: none;
}

.wclm-thankyou a:hover {
    color: inherit;
}

/* ── Header ────────────────────────────── */

.wclm-thankyou__header {
    background: #1a1a1a;
    color: #fff;
    padding: 48px 32px 40px;
    text-align: center;
}

.wclm-thankyou__header-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
}

.wclm-thankyou__header-icon svg {
    color: #fff;
}

.wclm-thankyou__header h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #fff;
    letter-spacing: -.3px;
}

.wclm-thankyou__header p {
    font-size: 15px;
    margin: 0;
    opacity: .7;
}

/* ── Body ──────────────────────────────── */

.wclm-thankyou__body {
    padding: 32px;
}

/* ── Alert ─────────────────────────────── */

.wclm-thankyou__alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 28px;
    background: #fefce8;
    border-left: 4px solid #d97706;
    border-radius: 6px;
}

.wclm-thankyou__alert-icon {
    flex-shrink: 0;
    color: #d97706;
    margin-top: 1px;
}

.wclm-thankyou__alert p {
    margin: 0;
    font-size: 14px;
    color: #333333;
    font-weight: 500;
    line-height: 1.45;
}

/* ── Step (shared) ─────────────────────── */

.wclm-thankyou__step {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 24px;
}

.wclm-thankyou__step-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.wclm-thankyou__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.wclm-thankyou__step-icon {
    color: #666666;
    display: flex;
    flex-shrink: 0;
}

.wclm-thankyou__step-header h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 0;
    color: #1a1a1a;
}

.wclm-thankyou__step-desc {
    color: #666666;
    font-size: 14px;
    margin: 0 0 16px;
}

/* ── Manual button ─────────────────────── */

.wclm-thankyou__manual-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    margin-top: 10px;
    background: #1a1a1a;
    color: #fff !important;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all .2s ease;
}

.wclm-thankyou__manual-btn:hover {
    background: #333333;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.wclm-thankyou__manual-btn svg {
    flex-shrink: 0;
}

/* Quando lock ativo: botao manual vira CTA chamativo */
.wclm-thankyou__body:has(.wclm-locked) .wclm-thankyou__manual-btn {
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    animation: wclmPulseBtn 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(17, 24, 39, .3);
}

@keyframes wclmPulseBtn {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(17, 24, 39, .3);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(17, 24, 39, 0);
    }
}

.wclm-thankyou__badge-updated {
    display: inline-block;
    background: #e5e7eb;
    color: #333333;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    margin-left: auto;
}

/* ── License item ──────────────────────── */

.license-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    margin-top: 12px;
}

.license-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f3f4f6;
}

.license-title {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
}

.license-update-info-date {
    font-size: 12px;
    color: #999999;
}

.license-key-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9fafb;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px dashed #d1d5db;
    position: relative;
}

.license-key-text {
    flex: 1;
    min-width: 0;
    font-family: "SF Mono", SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 14px;
    color: #1a1a1a;
    word-break: break-all;
    overflow-wrap: break-word;
    letter-spacing: .3px;
    user-select: all;
}

/* ── Copy button ───────────────────────── */

.copy-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: #fff;
    color: #333333;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all .15s ease;
    white-space: nowrap;
}

.copy-button:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.copy-button.copied {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}

.copy-button:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.copy-icon {
    display: flex;
    align-items: center;
}

.copy-text {
    font-size: 13px;
}

/* ── Lock state ────────────────────────── */

.wclm-thankyou__step.wclm-locked,
.wclm-licenses-section.wclm-locked {
    position: relative;
}

.license-item.wclm-license-locked {
    position: relative;
}

.license-item.wclm-license-locked .license-key-container {
    position: relative;
}

.license-item.wclm-license-locked .license-key-text {
    color: #d1d5db;
    user-select: none;
}

.license-item.wclm-license-locked .copy-button {
    pointer-events: none;
    opacity: .35;
}

/* ── Reveal button (inside locked license box) ── */

.wclm-reveal-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(217, 119, 6, .3);
    transition: box-shadow .15s;
    white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
    .wclm-reveal-btn:hover {
        box-shadow: 0 4px 14px rgba(217, 119, 6, .4);
    }
}

.license-item:not(.wclm-license-locked) .wclm-reveal-btn {
    display: none;
}

/* ── Confirmation modal ──────────────────── */

.wclm-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 9998;
    backdrop-filter: blur(3px);
}

.wclm-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
    z-index: 9999;
    max-width: 460px;
    width: 92%;
    overflow: hidden;
    animation: wclmModalIn .25s ease;
}

@keyframes wclmModalIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(.92);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.wclm-modal-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 22px 12px;
    border-bottom: 1px solid #f0f0f0;
}

.wclm-modal-header h3 {
    margin: 0;
    font-size: 17px;
    color: #1a1a2e;
}

.wclm-modal-icon {
    font-size: 24px;
}

.wclm-modal-body {
    padding: 16px 22px;
}

.wclm-modal-body p {
    margin: 0 0 14px;
    font-size: 14px;
    color: #555;
}

.wclm-modal-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fafafa;
    transition: border-color .15s;
}

.wclm-modal-checkbox:hover {
    border-color: #d97706;
}

.wclm-modal-checkbox input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: #d97706;
}

.wclm-modal-checkbox span {
    font-size: 13px;
    line-height: 1.5;
    color: #374151;
}

.wclm-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 14px 22px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}

.wclm-modal-cancel {
    padding: 8px 18px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    font-size: 13px;
    color: #555;
    transition: background .15s;
}

.wclm-modal-cancel:hover {
    background: #f3f4f6;
}

.wclm-modal-ok {
    padding: 8px 22px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: opacity .15s;
}

.wclm-modal-ok:disabled {
    opacity: .4;
    cursor: not-allowed;
}

.wclm-modal-ok:not(:disabled):hover {
    opacity: .9;
}

/* ── Mobile bottom sheet ─────────────────── */
@media (max-width: 600px) {
    .wclm-modal {
        top: auto;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        animation: wclmSheetUp .3s ease;
    }

    @keyframes wclmSheetUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }

    .wclm-modal-header {
        padding: 20px 20px 14px;
        justify-content: center;
    }

    .wclm-modal-header h3 {
        font-size: 16px;
    }

    .wclm-modal-body {
        padding: 14px 20px;
    }

    .wclm-modal-checkbox {
        padding: 14px;
    }

    .wclm-modal-checkbox span {
        font-size: 14px;
    }

    .wclm-modal-footer {
        flex-direction: column;
        padding: 16px 20px;
        padding-bottom: max(16px, env(safe-area-inset-bottom));
        gap: 8px;
    }

    .wclm-modal-ok {
        width: 100%;
        padding: 14px;
        font-size: 15px;
        border-radius: 12px;
        order: -1;
    }

    .wclm-modal-cancel {
        width: 100%;
        padding: 12px;
        font-size: 15px;
        border-radius: 12px;
        text-align: center;
    }
}

.license-item.wclm-unlocking .license-key-text {
    animation: wclmReveal .4s ease forwards;
}

.license-item.wclm-unlocking .wclm-reveal-btn {
    animation: wclmFadeOut .3s ease forwards;
}

@keyframes wclmReveal {
    from {
        opacity: .3;
    }

    to {
        opacity: 1;
    }
}

@keyframes wclmFadeOut {
    from {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(.85);
    }
}

/* ── Footer ────────────────────────────── */

.wclm-thankyou__footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px;
}

.wclm-thankyou__footer-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
}

.wclm-thankyou__footer-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #333333;
}

.wclm-thankyou__footer-card-header h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    color: #1a1a1a;
}

/* ── Buttons ───────────────────────────── */

.wclm-thankyou__btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all .15s ease;
}

.wclm-thankyou__btn-outline:hover {
    background: #f9fafb;
    border-color: #999999;
    color: #1a1a1a;
}

.wclm-thankyou__btn-solid {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    background: #1a1a1a;
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background .15s ease;
}

.wclm-thankyou__btn-solid:hover {
    background: #333333;
    color: #fff !important;
}

/* ── Support ───────────────────────────── */

.support-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.verification-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 12px 14px;
    margin-bottom: 8px;
}

.verification-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    background: #d1d5db;
}

.active .status-indicator {
    background: #1a1a1a;
}

.inactive .status-indicator,
.error .status-indicator {
    background: #dc2626;
}

.wclm-verification-results {
    margin-top: 16px;
}

.support-shortcode-container {
    margin-top: 16px;
}

.message-content {
    padding: 14px;
    border-radius: 8px;
    margin-top: 10px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
}

.message-content.success {
    background: #f0fdf4;
    border-color: #86efac;
    color: #166534;
}

.message-content.warning {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #991b1b;
}

.message-content p {
    margin: 8px 0;
}

.message-content strong {
    display: block;
    margin-bottom: 4px;
}

/* ── Mobile ────────────────────────────── */

@media (max-width: 640px) {

    /* Container: sem margens laterais, ocupa toda a largura */
    .wclm-thankyou {
        margin: 16px 0;
        border-radius: 0;
        box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
    }

    /* Header: compacto mas legível */
    .wclm-thankyou__header {
        padding: 32px 20px 28px;
    }

    .wclm-thankyou__header-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 16px;
    }

    .wclm-thankyou__header h2 {
        font-size: 21px;
        letter-spacing: -.2px;
    }

    .wclm-thankyou__header p {
        font-size: 14px;
    }

    /* Body */
    .wclm-thankyou__body {
        padding: 20px 16px;
    }

    /* Alert: layout vertical, ícone escondido no mobile */
    .wclm-thankyou__alert {
        padding: 12px 14px;
        gap: 10px;
        margin-bottom: 20px;
    }

    .wclm-thankyou__alert-icon {
        display: none;
    }

    .wclm-thankyou__alert p {
        font-size: 13px;
        line-height: 1.5;
    }

    /* Steps */
    .wclm-thankyou__step {
        padding: 16px;
        margin-bottom: 16px;
        border-radius: 8px;
    }

    .wclm-thankyou__step-header {
        gap: 8px;
        margin-bottom: 10px;
    }

    .wclm-thankyou__badge {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .wclm-thankyou__step-icon svg {
        width: 18px;
        height: 18px;
    }

    .wclm-thankyou__step-header h3 {
        font-size: 15px;
    }

    .wclm-thankyou__step-desc {
        font-size: 13px;
        margin-bottom: 12px;
    }

    /* Manual button: full-width CTA com touch target adequado */
    .wclm-thankyou__manual-btn {
        justify-content: center;
        padding: 14px 16px;
        font-size: 14px;
        min-height: 48px;
        border-radius: 8px;
    }

    .wclm-thankyou__body:has(.wclm-locked) .wclm-thankyou__manual-btn {
        padding: 14px 16px;
        font-size: 15px;
    }

    /* License item */
    .license-item {
        padding: 14px;
        border-radius: 8px;
    }

    .license-header {
        gap: 8px;
        margin-bottom: 10px;
        padding-bottom: 8px;
    }

    .license-title {
        font-size: 13px;
    }

    /* License key: vertical stack, chave em cima, botão embaixo */
    .license-key-container {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 12px;
    }

    .license-key-text {
        font-size: 12.5px;
        letter-spacing: 0;
        line-height: 1.6;
        text-align: center;
    }

    /* Copy button: full-width com touch target */
    .copy-button {
        justify-content: center;
        padding: 10px 14px;
        min-height: 44px;
        font-size: 14px;
        border-radius: 8px;
    }

    /* Reveal button: posição estática abaixo do container em mobile */
    .wclm-reveal-btn {
        position: static;
        transform: none;
        margin-top: 10px;
        justify-content: center;
        padding: 10px 14px;
        border-radius: 8px;
        font-size: 12px;
        max-width: 100%;
        text-align: center;
    }

    /* Footer */
    .wclm-thankyou__footer {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .wclm-thankyou__footer-card {
        padding: 16px;
    }

    .wclm-thankyou__footer-card-header h3 {
        font-size: 14px;
    }

    /* Buttons: full-width com touch target */
    .support-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .wclm-thankyou__btn-outline,
    .wclm-thankyou__btn-solid {
        width: 100%;
        justify-content: center;
        min-height: 44px;
        font-size: 14px;
        padding: 12px 16px;
    }
}

/* ── Diagnosis Result Cards ─────────────── */

.wclm-diagnosis-result {
    margin-top: 16px;
}

.wclm-diag-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 10px;
    border-left: 4px solid;
    margin-bottom: 8px;
}

.wclm-diag-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.wclm-diag-content strong {
    display: block;
    font-size: .95rem;
    margin-bottom: 4px;
}

.wclm-diag-content p {
    margin: 0;
    font-size: .85rem;
    opacity: .85;
}

/* Elevated user — details table */
.wclm-diag-details {
    margin-top: 10px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #fff;
}

.wclm-diag-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.wclm-diag-table th {
    background: #f3f4f6;
    padding: 8px 10px;
    text-align: left;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.wclm-diag-table td {
    padding: 7px 10px;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.wclm-diag-table tbody tr:last-child td {
    border-bottom: none;
}

.wclm-diag-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.wclm-diag-table td small {
    word-break: break-all;
}

/* Success / All Active */
.wclm-diag-success {
    background: #f0fdf4;
    border-color: #22c55e;
    color: #166534;
}
.wclm-diag-success .wclm-diag-icon {
    background: #dcfce7;
    color: #16a34a;
}

/* Exchange / Partial Exchange */
.wclm-diag-exchange {
    background: #eff6ff;
    border-color: #3b82f6;
    color: #1e40af;
}
.wclm-diag-exchange .wclm-diag-icon {
    background: #dbeafe;
    color: #2563eb;
}

/* Warning / Warranty Expired */
.wclm-diag-warning {
    background: #fffbeb;
    border-color: #f59e0b;
    color: #92400e;
}
.wclm-diag-warning .wclm-diag-icon {
    background: #fef3c7;
    color: #d97706;
}

/* Error / Limit Reached */
.wclm-diag-error {
    background: #fef2f2;
    border-color: #ef4444;
    color: #991b1b;
}
.wclm-diag-error .wclm-diag-icon {
    background: #fee2e2;
    color: #dc2626;
}

@media (max-width: 600px) {
    .wclm-diag-card {
        padding: 12px 14px;
        gap: 10px;
    }
    .wclm-diag-icon {
        width: 32px;
        height: 32px;
    }
    .wclm-diag-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* ── Troubleshoot Collapsible Section ──── */

.wclm-troubleshoot-section {
    margin: 0 0 24px;
    border: 1px solid #fed7aa;
    border-radius: 10px;
    background: #fff7ed;
    overflow: hidden;
    transition: box-shadow .2s;
}
.wclm-troubleshoot-section:hover {
    box-shadow: 0 2px 8px rgba(234, 88, 12, .08);
}

.wclm-troubleshoot-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #9a3412;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    gap: 12px;
    transition: background .15s;
}
.wclm-troubleshoot-toggle:hover {
    background: rgba(234, 88, 12, .05);
}
.wclm-troubleshoot-toggle-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.wclm-troubleshoot-toggle-left svg {
    color: #ea580c;
    flex-shrink: 0;
}
.wclm-troubleshoot-chevron {
    color: #ea580c;
    transition: transform .25s ease;
    flex-shrink: 0;
}
.wclm-troubleshoot-toggle[aria-expanded="true"] .wclm-troubleshoot-chevron {
    transform: rotate(180deg);
}

.wclm-troubleshoot-body {
    padding: 0 18px 18px;
}

.wclm-troubleshoot-desc {
    color: #78350f;
    font-size: 13px;
    margin: 0 0 14px;
    line-height: 1.5;
}

.wclm-troubleshoot-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    background: #ea580c;
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
    transition: background .15s, transform .1s;
}
.wclm-troubleshoot-btn:hover {
    background: #c2410c;
    color: #fff !important;
    transform: translateY(-1px);
}
.wclm-troubleshoot-btn:active {
    transform: translateY(0);
}
.wclm-troubleshoot-btn svg {
    width: 16px;
    height: 16px;
}

.wclm-troubleshoot-section .wclm-diagnosis-result {
    margin-top: 14px;
}

.wclm-troubleshoot-section .support-shortcode-container {
    margin-top: 14px;
}

.wclm-thankyou__footer-hint {
    color: #666;
    font-size: 13px;
    margin: 4px 0 0;
}

@media (max-width: 600px) {
    .wclm-troubleshoot-toggle {
        padding: 12px 14px;
        font-size: 13px;
    }
    .wclm-troubleshoot-body {
        padding: 0 14px 14px;
    }
    .wclm-troubleshoot-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
    }
}