/* =============================================================
   BugPost (Free) — Admin Styles
   ============================================================= */

/* -- Summary Page ---------------------------------------------- */

.bugpost-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.bugpost-summary-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.bugpost-summary-card h2 {
    margin: 0 0 12px;
    font-size: 15px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bugpost-summary-card table {
    margin: 0;
}

.bugpost-big-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #e74c3c;
    line-height: 1.2;
}

/* -- Badge Styles (list table + detail) ------------------------ */

.bugpost-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
}

/* -- Settings Page Enhancements -------------------------------- */

.form-table .bugpost-color-picker {
    vertical-align: middle;
}

/* -- Upsell Grid ----------------------------------------------- */

.bugpost-upsell-grid {
    margin-top: 16px;
}

@media (max-width: 782px) {
    .bugpost-upsell-grid {
        grid-template-columns: 1fr !important;
    }
}
