/* Scrum Boards — notification settings page (notifications stream, 2026-08-09;
   retrofitted onto the house design system 2026-08-09, Wave 3 "designsystem").
   Prefix: ocsbn-. The header is OcPageHeader, each section is an OcCard, the
   save control is an OcButton and the "muted" pill is an OcBadge, so all of
   that styling is gone from here. What remains is the page's own width and the
   per-board toggle list. Colors come from --oc-* tokens ONLY (oc-theme.css) so
   dark mode flips for free; no raw hex anywhere in this file. */

.ocsbn-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 1rem;
}

.ocsbn-toggle-row {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    cursor: pointer;
    color: var(--oc-text);
}

.ocsbn-toggle-row input[type="checkbox"] {
    margin-top: .2rem;
    flex-shrink: 0;
}

.ocsbn-board-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ocsbn-board-row {
    padding: .45rem 0;
    border-top: 1px solid var(--oc-border);
}

.ocsbn-board-row:first-child {
    border-top: none;
}

/* The pill itself is an OcBadge; this only separates it from the board name. */
.ocsbn-muted-badge {
    margin-left: .5rem;
}

.ocsbn-actions {
    display: flex;
    justify-content: flex-end;
}
