/* ── Sidebar "Upcoming" (scheduled notifications) ─────────────────────────── */
.sidebar-notif-section {
  margin: 14px 0 4px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.sidebar-notif-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 8px;
}
.sidebar-notif-header .neu-btn.icon-only {
  width: 26px;
  height: 26px;
  font-size: 13px;
}
.sidebar-notif-header .neu-btn.icon-only.subscribed {
  color: var(--accent);
}

.notif-upcoming-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 160px;
  overflow-y: auto;
}
.notif-empty {
  font-size: 12px;
  color: var(--dim);
  line-height: 1.4;
  padding: 4px 2px;
}
.notif-row {
  display: flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 15px;
}
.notif-row-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.notif-row-time {
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.notif-row-title {
  font-size: 12px;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.notif-row-cancel {
  flex: none;
  border: none;
  background: none;
  color: var(--dim);
  cursor: pointer;
  font-size: 13px;
  padding: 2px;
  line-height: 1;
}
.notif-row-cancel:hover { color: var(--text); }

/* Sidebar can be collapsed to icon-only width - hide the whole section then,
   same treatment as the rest of .session-selector (see sidebar.css). */
.sidebar.collapsed .sidebar-notif-section { display: none; }