.button.secondary:hover {
    background: var(--accent-dark);
    color: #fff;
}

footer a {
    color: var(--muted);
    font-size: .82rem;
    text-decoration-color: transparent;
}

footer a:hover {
    color: var(--accent-dark);
    text-decoration-color: currentColor;
}

.admin-totals {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 20px;
}

.admin-totals div {
    padding: 18px;
    border-radius: 14px;
    background: #edf3ed;
}

.admin-totals .declined-total {
    background: #f7e9e7;
}

.admin-totals strong {
    display: block;
    font-size: 1.8rem;
}

.admin-totals span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: .85rem;
}

.participant-list table {
    min-width: 900px;
}

.participant-list tr.is-declined {
    color: var(--muted);
    background: #fbf7f6;
}

.declined-label {
    display: inline-block;
    margin-left: 8px;
    padding: 3px 7px;
    border-radius: 99px;
    background: #f1d9d6;
    color: #8b332e;
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.comment-preview {
    cursor: help;
    border-bottom: 1px dotted var(--muted);
}

.guest-editor {
    margin-top: 22px;
    scroll-margin-top: 20px;
}

.guest-editor h3 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 1.5rem;
}

.field-hint {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 500;
    line-height: 1.45;
}

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