/* ============================================
   NOTIFICATION BADGE & DROPDOWN
   ============================================ */
.notification-badge {
  position: absolute;
  top: 1px;
  right: 4px;
  background: var(--color-danger, #ef4444);
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  border: 2px solid var(--surface);
  z-index: 10;
}

.notification-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 320px;
  max-width: calc(100vw - 24px);
  padding: 8px 0;
  background: var(--surface);
  border: 1px solid #eee;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  overflow: hidden;
  animation: dropdownSlideIn 0.2s ease-out;
}

/* ============================================
   NOTIFICATIONS PAGE
   ============================================ */
.notifications-page {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.notifications-page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border-subtle);
}

.notifications-page-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.notifications-page-title h1 {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  letter-spacing: -0.03em;
}

.notifications-page-title h1 .material-symbols-outlined {
  font-size: 36px;
  color: var(--color-accent);
}

.notifications-page-title p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

.notifications-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

@media (max-width: 1200px) {
  .notifications-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .notifications-stats-grid {
    grid-template-columns: 1fr;
  }
}

.notifications-stat-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  transition: all 0.2s ease;
}

.notifications-stat-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.notifications-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.notifications-stat-icon.total {
  background: rgba(99, 102, 241, 0.15);
  color: var(--color-accent);
}
.notifications-stat-icon.unread {
  background: rgba(239, 68, 68, 0.15);
  color: var(--color-danger);
}
.notifications-stat-icon.bookings {
  background: rgba(34, 197, 94, 0.15);
  color: var(--color-success);
}
.notifications-stat-icon.reviews {
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-info);
}

.notifications-stat-content {
  flex: 1;
  min-width: 0;
}

.notifications-stat-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 2px;
}

.notifications-stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

/* List Section */
.notifications-list-section {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.notifications-list-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--border-subtle);
  flex-wrap: wrap;
  gap: var(--space-3);
  background: var(--color-bg);
}

.notifications-list-section-title {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  color: var(--text);
  font-size: 1.1rem;
}

.notifications-list-section-title .material-symbols-outlined {
  font-size: 24px;
  color: var(--accent);
}

.notifications-list-container {
  max-height: 600px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 20px;
}

/* Match notification page items to dropdown/tray look */
.notifications-page .notification-list-item {
  cursor: pointer;
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  align-items: center;
  justify-content: space-between;
}

.notifications-page .notification-list-item.unread {
  background: color-mix(in oklab, var(--color-primary, #3b82f6) 10%, #ffffff);
}

.notifications-page .notification-list-item.read {
  background: #ffffff;
}

html[data-theme="dark"] .notifications-page .notification-list-item.unread {
  background: color-mix(
    in oklab,
    var(--color-primary) 18%,
    var(--color-surface)
  );
}

html[data-theme="dark"] .notifications-page .notification-list-item.read {
  background: var(--color-surface);
}

.notifications-page .notification-list-item:hover {
  background: color-mix(
    in oklab,
    var(--color-primary) 6%,
    var(--color-surface)
  );
}

.notifications-page .notification-list-item-icon {
  background: color-mix(in oklab, var(--color-primary) 12%, transparent);
  color: var(--color-primary);
}

.notifications-page .notification-list-item-title {
  font-size: 14px;
  font-weight: 500;
}

.notifications-page .notification-list-item-meta {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 4px;
  margin-bottom: 6px;
}

.notifications-page .notification-message {
  font-size: 13px;
  color: var(--color-text);
}

.notifications-page .notification-list-item-actions {
  margin-left: 16px;
  align-self: center;
}

.notifications-page .notification-list-item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.notification-list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: 18px 22px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: #fff;
  transition: all 0.15s ease;
}

.notification-list-item:last-child {
  border-bottom: 1px solid var(--border-subtle);
}

.notification-list-item:hover {
  background: #f9fafb;
}

.notification-list-item.unread {
  background: color-mix(in oklab, var(--accent) 8%, transparent);
}

.notification-list-item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  background: var(--bg);
  border: 1px solid var(--border-subtle);
  margin-right: 12px;
}

.notification-list-item-icon .material-symbols-outlined {
  font-size: 18px;
  color: var(--accent);
}

.notification-list-item-icon.booking {
  background: rgba(34, 197, 94, 0.15);
}
.notification-list-item-icon.booking .material-symbols-outlined {
  color: #22c55e;
}
.notification-list-item-icon.game {
  background: rgba(168, 85, 247, 0.15);
}
.notification-list-item-icon.game .material-symbols-outlined {
  color: #a855f7;
}
.notification-list-item-icon.badge {
  background: rgba(251, 191, 36, 0.15);
}
.notification-list-item-icon.badge .material-symbols-outlined {
  color: #fbbf24;
}
.notification-list-item-icon.class {
  background: rgba(59, 130, 246, 0.15);
}
.notification-list-item-icon.class .material-symbols-outlined {
  color: #3b82f6;
}
.notification-list-item-icon.reminder {
  background: rgba(239, 68, 68, 0.15);
}
.notification-list-item-icon.reminder .material-symbols-outlined {
  color: #ef4444;
}

.notification-list-item-content {
  flex: 1;
  min-width: 0;
}

.notification-list-item-actions {
  margin-left: 16px;
  align-self: center;
}

.notification-list-item-title-row {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: 4px;
}

.notification-list-item-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.unread-dot,
.notification-unread-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent, #3b82f6);
  margin-top: 6px;
  flex-shrink: 0;
}

.notification-list-item-meta {
  font-size: 12px;
  color: #999;
  margin-bottom: 6px;
}

.notification-message {
  margin-top: 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
}

.notification-list-item-actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.notification-list-item-actions .btn {
  padding: 6px 12px;
  font-size: 13px;
}

.notification-empty-state {
  padding: var(--space-8);
  text-align: center;
  color: var(--muted);
}

.notification-empty-state-icon {
  font-size: 48px;
  margin-bottom: var(--space-3);
  opacity: 0.5;
}

.notification-empty-state-icon .material-symbols-outlined {
  font-size: 48px;
  color: var(--muted);
}

.notification-empty-state-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: var(--space-1);
}

.notification-empty-state-subtext {
  font-size: 13px;
  color: var(--muted);
}

/* ============================================
   NOTIFICATION PREFERENCES PAGE
   ============================================ */
.notification-preferences-page {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.notification-item-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.notification-item-grid .notification-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4);
  background: var(--color-bg);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--duration-fast) var(--easing-smooth);
}

.notification-item-grid .notification-item:hover {
  border-color: var(--color-accent);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.notification-item-grid .notification-item-content {
  flex: 1;
  min-width: 0;
}

.notification-item-grid .notification-item-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}

.notification-item-grid .notification-item-description {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* Quiet Hours Card */
.quiet-hours-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}

.quiet-hours-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}

.quiet-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.quiet-time-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.quiet-hours-toggle {
  display: flex;
  align-items: center;
}

.time-inputs {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-surface);
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-sm);
}

.time-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.time-inputs input[type="time"] {
  border: none;
  background: transparent;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  padding: 2px;
  outline: none;
}

.quiet-status {
  margin-top: var(--space-4);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: var(--color-border);
  color: var(--color-text-muted);
}

.quiet-status.active {
  background: var(--color-info-bg-subtle);
  color: var(--color-info-text);
}

.quiet-status .status-icon {
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .quiet-time-item {
    flex-direction: column;
    align-items: stretch;
  }

  .time-inputs {
    justify-content: space-between;
  }

  @media (max-width: 768px) {
    .notification-preferences-page .page-header {
      flex-direction: column;
      align-items: flex-start;
      gap: var(--space-3);
    }

    .notification-item-grid .notification-item {
      flex-direction: column;
      align-items: stretch;
      gap: var(--space-3);
    }

    .notification-item-grid .toggle-switch {
      align-self: flex-end;
    }

    .quiet-hours-toggle {
      align-self: flex-end;
    }

    .time-inputs {
      width: 100%;
    }
  }
  .notification-preferences-page .page-header-actions {
    display: none;
  }
}

@media (max-width: 768px) {
  .notifications-page-header {
    flex-direction: column;
    align-items: stretch;
  }

  .notifications-page-title h1 {
    font-size: 22px;
  }

  .notifications-page-title p {
    font-size: 13px;
  }

  .notifications-page-actions {
    width: 100%;
  }

  .notifications-page-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .notifications-stat-card {
    padding: var(--space-4);
  }

  .notifications-stat-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .notifications-stat-value {
    font-size: 20px;
  }

  .notifications-stat-label {
    font-size: 12px;
  }

  .notifications-list-section-header {
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-3) var(--space-4);
    gap: var(--space-3);
  }

  .notifications-list-section-title {
    font-size: 14px;
  }

  .notification-list-item {
    padding: var(--space-3) var(--space-4);
  }

  .notification-list-item.unread {
    padding-left: calc(var(--space-4) - 3px);
  }

  .notification-list-item-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .notification-list-item-title {
    font-size: 13px;
  }

  .notification-list-item-meta {
    font-size: 11px;
  }

  .notification-list-item-actions {
    flex-direction: column;
  }

  .notification-list-item-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .notifications-list-container {
    max-height: none;
  }
}

@media (max-width: 480px) {
  .notifications-page-title h1 {
    font-size: 18px;
  }

  .notification-list-item {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }

  .notification-list-item.unread {
    padding-left: calc(var(--space-4) - 3px);
  }

  .notification-list-item-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .notification-empty-state-icon {
    font-size: 36px;
  }

  .notification-empty-state-text {
    font-size: 14px;
  }

  .notification-empty-state-subtext {
    font-size: 12px;
  }
}

/* Student notification page compact dark list */
.notifications-page .notifications-list-section {
  width: 100%;
}

.notifications-page .notifications-list-section-header {
  padding: 14px 16px;
}

.notifications-page .notifications-list-section-title svg {
  color: #22c55e;
  fill: currentColor;
}

.notifications-page .badge-count {
  color: #b8bff4;
  background: rgba(102, 112, 214, 0.18);
  border-color: #48539a;
}

.notifications-page .notifications-list-container {
  max-height: none;
  gap: 8px;
  padding: 8px;
}

.notifications-page .notification-list-item,
.notifications-page .notification-list-item.unread,
.notifications-page .notification-list-item.read {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
  min-height: 64px;
  padding: 9px 9px 9px 12px;
  cursor: pointer;
}

html[data-theme="dark"] .notifications-page .notification-list-item,
html[data-theme="dark"] .notifications-page .notification-list-item.unread,
html[data-theme="dark"] .notifications-page .notification-list-item.read {
  background: #1b2140;
  border-color: #7780c6;
}

.notifications-page .notification-list-item:hover {
  transform: none;
}

html[data-theme="dark"] .notifications-page .notification-list-item:hover {
  background: #22294f;
  border-color: #96a0ea;
}

.notifications-page .notification-list-item-icon {
  width: 30px;
  height: 30px;
  margin-right: 0;
  border-radius: 6px;
}

html[data-theme="dark"] .notifications-page .notification-list-item-icon {
  color: #20d576;
  background: #111632;
  border-color: #3f4a88;
}

.notifications-page .notification-list-item-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

html[data-theme="dark"]
  .notifications-page
  .notification-list-item-icon.booking,
html[data-theme="dark"] .notifications-page .notification-list-item-icon.game,
html[data-theme="dark"] .notifications-page .notification-list-item-icon.badge,
html[data-theme="dark"] .notifications-page .notification-list-item-icon.class,
html[data-theme="dark"]
  .notifications-page
  .notification-list-item-icon.reminder {
  background: #111632;
}

html[data-theme="dark"]
  .notifications-page
  .notification-list-item-icon.booking,
html[data-theme="dark"] .notifications-page .notification-list-item-icon.class,
html[data-theme="dark"]
  .notifications-page
  .notification-list-item-icon.reminder {
  color: #20d576;
}

html[data-theme="dark"] .notifications-page .notification-list-item-icon.game {
  color: #9b8cff;
}

html[data-theme="dark"] .notifications-page .notification-list-item-icon.badge {
  color: #f7c65b;
}

.notifications-page .notification-list-item-content {
  flex: 1;
  min-width: 0;
  gap: 0;
}

.notifications-page .notification-list-item-title-row {
  min-width: 0;
  margin-bottom: 1px;
}

.notifications-page .notification-list-item-title {
  display: block;
  overflow: hidden;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

html[data-theme="dark"] .notifications-page .notification-list-item-title {
  color: #9e8dff;
}

.notifications-page .notification-message {
  display: block;
  overflow: hidden;
  font-size: 11px;
  line-height: 1.28;
  text-overflow: ellipsis;
  white-space: nowrap;
}

html[data-theme="dark"] .notifications-page .notification-message {
  color: #d4d8ff;
}

html[data-theme="dark"] .notifications-page .notification-message-label {
  color: #ffffff;
}

.notifications-page .notification-list-item-meta {
  margin: 1px 0 0;
  font-size: 11px;
  line-height: 1.25;
}

html[data-theme="dark"] .notifications-page .notification-list-item-meta {
  color: #aab0da;
}

.notifications-page .notification-list-item-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  text-decoration: none;
}

html[data-theme="dark"] .notifications-page .notification-list-item-action {
  color: #cdd3ff;
}

.notifications-page .notification-list-item-action svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

html[data-theme="dark"] .notifications-page .notification-empty-state {
  color: #d4d8ff;
}

html[data-theme="dark"] .notifications-page .notification-empty-state-subtext {
  color: #aab0da;
}

@media (max-width: 768px) {
  .notifications-page .notifications-list-section {
    width: 100%;
  }

  .notifications-page .notification-list-item,
  .notifications-page .notification-list-item.unread,
  .notifications-page .notification-list-item.read {
    padding: 9px 9px 9px 12px;
  }
}

.notification-card-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#notification-dropdown .notification-card-list {
  padding: 8px;
}

.notification-card-list .notification-list-item,
.notification-card-list .notification-list-item.unread,
.notification-card-list .notification-list-item.read {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 11px;
  min-height: 64px;
  padding: 9px 9px 9px 12px;
  border-radius: var(--radius-md);
  box-shadow: none;
  cursor: pointer;
}

html[data-theme="dark"] .notification-card-list .notification-list-item,
html[data-theme="dark"] .notification-card-list .notification-list-item.unread,
html[data-theme="dark"] .notification-card-list .notification-list-item.read {
  background: #1b2140;
  border-color: #7780c6;
}

.notification-card-list .notification-list-item:hover {
  transform: none;
}

html[data-theme="dark"] .notification-card-list .notification-list-item:hover {
  background: #22294f;
  border-color: #96a0ea;
}

.notification-card-list .notification-list-item-icon {
  width: 30px;
  height: 30px;
  margin-right: 0;
  border-radius: 6px;
}

html[data-theme="dark"] .notification-card-list .notification-list-item-icon {
  color: #20d576;
  background: #111632;
  border-color: #3f4a88;
}

.notification-card-list .notification-list-item-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

html[data-theme="dark"]
  .notification-card-list
  .notification-list-item-icon.booking,
html[data-theme="dark"]
  .notification-card-list
  .notification-list-item-icon.class,
html[data-theme="dark"]
  .notification-card-list
  .notification-list-item-icon.reminder {
  color: #20d576;
}

html[data-theme="dark"]
  .notification-card-list
  .notification-list-item-icon.game {
  color: #9b8cff;
}

html[data-theme="dark"]
  .notification-card-list
  .notification-list-item-icon.badge {
  color: #f7c65b;
}

.notification-card-list .notification-list-item-content {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  gap: 0;
  overflow: hidden;
}

.notification-card-list .notification-list-item-title-row {
  display: block;
  min-width: 0;
  max-width: 100%;
  margin-bottom: 1px;
  overflow: hidden;
}

.notification-card-list .notification-list-item-title {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

html[data-theme="dark"] .notification-card-list .notification-list-item-title {
  color: #9e8dff;
}

.notification-card-list .notification-message {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  font-size: 11px;
  line-height: 1.28;
  text-overflow: ellipsis;
  white-space: nowrap;
}

html[data-theme="dark"] .notification-card-list .notification-message {
  color: #d4d8ff;
}

.notification-card-list .notification-list-item-meta {
  margin: 1px 0 0;
  font-size: 11px;
  line-height: 1.25;
}

html[data-theme="dark"] .notification-card-list .notification-list-item-meta {
  color: #aab0da;
}

.notification-card-list .notification-list-item-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  text-decoration: none;
}

html[data-theme="dark"] .notification-card-list .notification-list-item-action {
  color: #cdd3ff;
}

.notification-card-list .notification-list-item-action svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

#notification-dropdown .dropdown-header {
  font-weight: 600;
  padding: 10px 16px;
  border-bottom: 1px solid var(--color-border-subtle, #eee);
  color: var(--color-text, #222);
}

#notification-dropdown .dropdown-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-top: 1px solid var(--color-border-subtle, #eee);
  gap: 12px;
}

#notification-dropdown .dropdown-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--color-primary, #3b82f6);
  font-size: 12px;
  cursor: pointer;
  text-decoration: none;
}

#notification-dropdown .dropdown-link:hover {
  text-decoration: underline;
}

#notification-dropdown .dropdown-link.muted {
  color: var(--color-text-muted, #888);
}

html[data-theme="dark"] #notification-dropdown .dropdown-header {
  color: #e4e7ff;
  border-bottom-color: #273057;
}

html[data-theme="dark"] #notification-dropdown .dropdown-footer {
  border-top-color: #273057;
}

html[data-theme="dark"] #notification-dropdown .dropdown-link {
  color: #cdd3ff;
}

html[data-theme="dark"] #notification-dropdown .dropdown-link.muted {
  color: #aab0da;
}

html[data-theme="dark"] #notification-dropdown .dropdown-footer {
  align-items: center;
  justify-content: center;
  gap: 0;
}

html[data-theme="dark"] #notification-dropdown .dropdown-footer .dropdown-link {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
}
