/* Panel powiadomień */
.notification-panel {
  display: none;
  position: absolute;
  top: 48px;
  right: 16px;
  width: 340px;
  max-height: 60vh;
  background: var(--panel,#111729);
  color: var(--text,#e5ecff);
  border-radius: 16px;
  box-shadow: 0 8px 32px #0008;
  z-index: 10000;
  padding: 0;
  overflow: auto;
}
.notification-panel.show {
  display: block;
}
.notification-header {
  font-weight: bold;
  padding: 16px 20px 8px 20px;
  border-bottom: 1px solid var(--muted,#1a2340);
  background: var(--panel,#111729);
  border-radius: 16px 16px 0 0;
}
.notification-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.notification {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--muted,#1a2340);
  cursor: pointer;
  background: none;
  transition: background 0.15s;
}
.notification.unread {
  background: #20305a;
}
.notification:last-child {
  border-bottom: none;
}
.notification .icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.notification .icon.offer {
  background: url('../img/icon-offer.svg') no-repeat center/contain;
}
.notification .icon.status {
  background: url('../img/icon-status.svg') no-repeat center/contain;
}
.notification .icon.review {
  background: url('../img/icon-review.svg') no-repeat center/contain;
}
.notification .icon.mail {
  background: url('../img/icon-mail.svg') no-repeat center/contain;
}
.notification .icon.system {
  background: url('../img/icon-status.svg') no-repeat center/contain;
}
.notification__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}
.notification__message {
  color: var(--text,#e5ecff);
  font-size: 14px;
  line-height: 1.4;
  word-break: break-word;
}
.notification .date {
  color: var(--soft,#a5b4d4);
  font-size: 12px;
  align-self: flex-start;
  white-space: nowrap;
}
.notification-footer {
  padding: 10px 20px;
  text-align: right;
  background: var(--panel,#111729);
  border-radius: 0 0 16px 16px;
}
.notification-footer button {
  background: none;
  border: none;
  color: var(--brand,#6aa1ff);
  cursor: pointer;
  font-size: 14px;
  padding: 0;
}
