/* =========================================================
   APPLICATION STATUS CHECK PAGE
========================================================= */

.status-page {
    background:
        radial-gradient(circle at top right, rgba(0, 167, 225, 0.12), transparent 28%),
        linear-gradient(135deg, #eef7ff 0%, #ffffff 70%);
    padding: 54px 0 74px;
}

.status-card {
    background: #ffffff;
    border: 1px solid #e4edf6;
    border-radius: 28px;
    box-shadow: 0 18px 55px rgba(0, 39, 83, 0.10);
    padding: 30px;
}

.status-card h1,
.status-card h2,
.status-card h4 {
    font-weight: 900;
    color: #111827;
}

.status-card p {
    color: #6b7280;
}

.status-token-box {
    background: #071d33;
    color: #ffffff;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
}

.status-token-box small {
    display: block;
    opacity: 0.72;
    margin-bottom: 6px;
    font-weight: 700;
}

.status-token-box strong {
    display: block;
    font-size: 24px;
    letter-spacing: 1px;
}

.status-result {
    border-radius: 22px;
    border: 1px solid #e4edf6;
    padding: 22px;
    background: #f8fbff;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 9px 14px;
    background: rgba(0, 91, 170, 0.12);
    color: #005baa;
    font-weight: 900;
    margin-bottom: 12px;
}

.status-info-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #e4edf6;
}

.status-info-row:last-child {
    border-bottom: none;
}

.status-info-row span {
    color: #6b7280;
    font-weight: 700;
}

.status-info-row strong {
    color: #111827;
}

.consent-box {
    background: #f8fbff;
    border: 1px solid #e4edf6;
    border-radius: 18px;
    padding: 16px;
}

.consent-box label {
    cursor: pointer;
    color: #374151;
    line-height: 1.6;
}

@media (max-width: 575.98px) {
    .status-info-row {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .status-token-box strong {
        font-size: 20px;
    }
}
