.notifications-screen { max-width: 720px; }
.notifications-card { margin: 18px 0; border: 1px solid var(--line); border-radius: 16px; background: var(--panel); overflow: hidden; }
.notifications-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px; cursor: pointer; }
.notifications-row + .notifications-row, .notifications-permission + .notifications-row { border-top: 1px solid var(--line); }
.notifications-row > span { display: grid; gap: 6px; min-width: 0; }
.notifications-row strong { color: var(--ink); font-size: 14px; }
.notifications-row small { color: var(--muted); font-size: 12px; line-height: 1.5; }
.notifications-row input[role="switch"] { appearance: none; flex: 0 0 40px; width: 40px; height: 24px; margin: 0; padding: 3px; border: 1px solid var(--line); border-radius: 20px; background: var(--muted); cursor: pointer; }
.notifications-row input[role="switch"]::before { content: ''; display: block; height: 16px; width: 16px; border-radius: 50%; background: #fff; transition: transform .12s ease; }
.notifications-row input[role="switch"]:checked { background: var(--accent); border-color: var(--accent); }
.notifications-row input[role="switch"]:checked::before { transform: translateX(16px); }
.notifications-row input[role="switch"]:disabled { opacity: .5; cursor: default; }
.notifications-permission { display: grid; justify-items: start; gap: 12px; padding: 0 18px 18px; }
.notifications-screen .security-button[hidden] { display: none; }
.notifications-screen .security-button:disabled { opacity: .5; cursor: default; }
.notifications-screen .security-status.error { color: #bc4856; }
@media (prefers-reduced-motion: reduce) { .notifications-row input[role="switch"]::before { transition: none; } }
