/* QRLON SECURITY V1 START */

.security-page {
    width: 100%;
}


.security-summary {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 10px;

    margin-bottom: 12px;
}


.security-summary-card {
    padding: 11px 12px;

    border: 1px solid #e0e0e0;
    border-radius: 7px;

    background: #fafafa;
}


.security-summary-label {
    margin-bottom: 6px;

    color: #777;

    font-size: 11px;
    font-weight: 400;
}


.security-summary-value {
    font-size: 18px;
    font-weight: 600;
}


.security-hint {
    margin:
        0
        0
        12px;

    color: #707070;

    font-size: 12px;
    font-weight: 400;
}


.security-primary {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
}


.security-current {
    max-width: 320px;

    font-family:
        Consolas,
        Monaco,
        "Courier New",
        monospace;

    font-size: 12px;

    overflow-wrap: anywhere;
}


.security-note {
    max-width: 460px;

    color: #666;

    font-size: 11px;
    font-weight: 400;
    line-height: 1.4;
}


.security-badge {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 24px;

    padding: 3px 8px;

    border: 1px solid #ddd;
    border-radius: 999px;

    font-size: 10px;
    font-weight: 500;
    line-height: 1;
}


.security-pass {
    border-color: #a8ddb9;

    background: #e9f9ee;
    color: #176b32;
}


.security-warning {
    border-color: #e3d19e;

    background: #fff8df;
    color: #806100;
}


.security-critical {
    border-color: #efb4b4;

    background: #fff0f0;
    color: #b51d1d;
}


.security-message {
    margin-top: 12px;

    padding: 9px 11px;

    border: 1px solid #b9dfc5;
    border-radius: 6px;

    background: #eefaf2;
    color: #176b32;

    font-size: 12px;
}


.security-message.is-error {
    border-color: #efb4b4;

    background: #fff0f0;
    color: #b51d1d;
}


@media (max-width: 900px) {

    .security-summary {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .security-table {
        min-width: 900px;
    }
}

/* QRLON SECURITY V1 END */