/**
 * Notification-Dropdown: klares Layout, keine absolute-Positioning-Fallen
 */
#notification-list {
  --notif-gap: 0;
}
#notification-list .notif-chat-item {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  width: 100%;
  color: inherit;
  text-decoration: none;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--bs-border-color);
  background: transparent;
  transition: background 0.15s ease;
}
#notification-list .notif-chat-item:hover,
#notification-list .notif-chat-item:focus {
  background: var(--pc-active-background, rgba(0,0,0,.05));
  color: inherit;
}
#notification-list .notif-chat-item:last-of-type {
  border-bottom: none;
}
#notification-list .notif-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: rgba(var(--bs-primary-rgb, 13, 110, 253), 0.15);
  color: var(--bs-primary);
}
#notification-list .notif-body {
  flex: 1;
  min-width: 0;
}
#notification-list .notif-row1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 2px;
}
#notification-list .notif-name {
  font-weight: 600;
  font-size: 0.9375rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#notification-list .notif-unread {
  flex-shrink: 0;
  font-size: 0.75rem;
  padding: 0.2em 0.5em;
  border-radius: 999px;
  background: var(--bs-danger);
  color: #fff;
}
#notification-list .notif-preview {
  font-size: 0.8125rem;
  color: var(--bs-secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.3;
}
#notification-list .notif-empty {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
}
#notification-list .notif-empty-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background: var(--bs-light);
  color: var(--bs-secondary);
}
[data-pc-theme="dark"] #notification-list .notif-empty-icon {
  background: var(--bs-dark);
  color: var(--bs-secondary);
}
#notification-list .notif-empty-text .notif-empty-title {
  font-weight: 600;
  margin-bottom: 2px;
}
#notification-list .notif-empty-text .notif-empty-desc {
  font-size: 0.875rem;
  color: var(--bs-secondary);
}

/* Footer-Button dezent */
.pc-header .dropdown-notification #notification-footer .btn {
  font-size: 0.875rem;
}
