.dashboard-page {
    width: 100%;
}

.dashboard-cards {
    display: grid;
    grid-template-columns:
        repeat(7, minmax(0, 1fr));
    gap: 9px;
    margin-bottom: 18px;
}

.dashboard-card {
    padding: 11px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 7px;
    background: #fafafa;
}

.dashboard-card span {
    display: block;
    margin-bottom: 5px;
    color: #777;
    font-size: 11px;
}

.dashboard-card strong {
    font-size: 18px;
    font-weight: 600;
}

.dashboard-section-title {
    margin: 16px 0 9px;
    font-size: 13px;
    font-weight: 600;
}

.dashboard-code {
    font-family:
        Consolas,
        Monaco,
        monospace;
    font-size: 12px;
}

.dashboard-primary {
    font-size: 13px;
    font-weight: 500;
}

.dashboard-badge {
    display: inline-flex;
    padding: 4px 8px;
    border: 1px solid #ddd;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 500;
}

.dashboard-ok {
    background: #e9f9ee;
    border-color: #a8ddb9;
    color: #176b32;
}

.dashboard-error {
    background: #fff0f0;
    border-color: #efb4b4;
    color: #b51d1d;
}

.dashboard-updated {
    margin-top: 12px;
    color: #777;
    font-size: 11px;
}

@media (max-width: 1100px) {

    .dashboard-cards {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {

    .dashboard-cards {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}