.admin-stat-grid {
    grid-template-columns: repeat(5, 1fr);
}

.admin-stat-grid article {
    padding: 20px;
}

.admin-table-head,
.admin-business-row {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr .45fr .4fr .65fr .55fr 1.35fr;
    gap: 18px;
}

.admin-table-head {
    padding: 10px 24px;
    background: #f8f7f3;
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 1.3px;
}

.admin-business-row {
    align-items: center;
    padding: 14px 24px;
    border-bottom: 1px solid #efede8;
    font-size: 12px;
}

.admin-business-row > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-business-row p {
    margin: 0;
}

.admin-business-row b,
.admin-business-row small {
    display: block;
}

.admin-business-row small,
.admin-business-row time {
    color: var(--muted);
    font-size: 10px;
}

.plan-pill {
    width: max-content;
    padding: 4px 8px;
    border-radius: 12px;
    background: #e8eee9;
    color: var(--ink);
    font-size: 9px;
    font-weight: 800;
}

.status-pill {
    width: max-content;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 9px;
    font-weight: 800;
}

.status-pill.active {
    background: #ddefe6;
    color: #27644f;
}

.status-pill.suspended {
    background: #f5dfda;
    color: #98473d;
}

.admin-actions,
.suspend-form {
    display: flex;
    align-items: center;
    gap: 6px;
}

.admin-actions {
    flex-direction: column;
    align-items: stretch;
}

.suspend-form input {
    min-width: 0;
    width: 100%;
    padding: 7px 8px;
    border: 1px solid #ddd9d1;
    border-radius: 5px;
    font-size: 10px;
}

.action-button {
    padding: 7px 9px;
    border: 0;
    border-radius: 5px;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
}

.action-button.suspend {
    background: #a94f43;
}

.action-button.reactivate {
    background: #32745f;
}

.admin-create-form {
    max-width: 760px;
}

.admin-create-form select {
    width: 100%;
    margin-top: 7px;
    padding: 12px 13px;
    border: 1px solid #d8dcd8;
    border-radius: 7px;
    background: #fff;
    color: #20372f;
}

.suspended-shell {
    width: min(620px, calc(100% - 40px));
    min-height: calc(100vh - 180px);
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.suspended-shell h1 {
    margin: 16px 0 8px;
    font-size: 36px;
}

.suspended-shell > p {
    max-width: 540px;
    color: var(--muted);
}

.suspended-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f5dfda;
    color: #98473d;
    font: 800 28px Manrope;
}

.suspension-reason {
    width: 100%;
    margin: 20px 0;
    padding: 15px;
    border-radius: 8px;
    background: #f8f4ec;
}

.suspension-reason small,
.suspension-reason strong {
    display: block;
}

.suspension-reason small {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 1.5px;
}

@media (max-width: 850px) {
    .admin-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-stat-grid article:last-child {
        grid-column: 1 / -1;
    }

    .admin-table-head {
        display: none;
    }

    .admin-business-row {
        grid-template-columns: 1fr 1fr .5fr .65fr 1.2fr;
    }

    .admin-business-row > .plan-pill,
    .admin-business-row > time {
        display: none;
    }
}

@media (max-width: 560px) {
    .admin-stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .admin-business-row {
        grid-template-columns: 1fr auto 1fr;
    }

    .admin-business-row > p,
    .admin-business-row > strong {
        display: none;
    }

    .suspended-shell h1 {
        font-size: 29px;
    }
}
