/* =============================================================================
   Settings → Notifications — the Team Spaces global post rule
   -----------------------------------------------------------------------------
   Scoped under `.settings-spaces-notify` (CLAUDE.md rule 2). The card chrome
   itself (`.settings-card`, `.settings-toggle-row`, `.settings-switch`) is the
   shared settings styling in main-chat.css; only the radio group is ours, so it
   is the only thing declared here.
   ============================================================================= */

.settings-spaces-notify__modes {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 14px;
}

.settings-spaces-notify__mode {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 8px;
    cursor: pointer;
}
.settings-spaces-notify__mode:hover { background: var(--at-bg-2, rgba(0, 0, 0, 0.03)); }

.settings-spaces-notify__mode input {
    /* Nudged down so the control aligns with the first line of the label rather
       than the vertical centre of a two-line block. */
    margin-top: 3px;
    flex: 0 0 auto;
    accent-color: var(--at-accent, #2d5f84);
}

.settings-spaces-notify__mode > span {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.settings-spaces-notify__label {
    font-size: 14px;
    font-weight: 500;
    color: var(--at-text-1, #1f1e1d);
}

/* Disabled rather than hidden: under "Nothing" there is no notification left to
   push, and a control that vanishes reads as a missing feature. */
.settings-toggle-row--disabled {
    opacity: 0.55;
}
.settings-toggle-row--disabled .settings-switch { cursor: not-allowed; }
