.notif-dropdown-panel {
  display: none;
  position: absolute;
  width: 340px;
  max-height: 420px;
  overflow-y: auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,.16);
  border: 1px solid #f1f5f9;
  z-index: 2000;
}
.notif-dropdown-panel.open { display: block; }

.notif-dd-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-bottom: 1px solid #f1f5f9;
  font-size: 15px; font-weight: 700; color: #1e293b;
  position: sticky; top: 0; background: #fff;
}
.notif-dd-settings-link {
  color: #94a3b8; text-decoration: none; font-size: 14px;
}
.notif-dd-settings-link:hover { color: #c0392b; }

.notif-dd-empty {
  padding: 28px 16px; text-align: center; font-size: 13px; color: #94a3b8;
}

.notif-dd-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 16px; text-decoration: none;
  border-bottom: 1px solid #f8fafc;
  position: relative;
}
.notif-dd-item:hover { background: #f8fafc; }
.notif-dd-item.unread { background: #fdf5f4; }
.notif-dd-item.unread::before {
  content: ""; position: absolute; left: 6px; top: 20px;
  width: 6px; height: 6px; border-radius: 50%; background: #c0392b;
}

.notif-dd-icon {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}

.notif-dd-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.notif-dd-title { font-size: 13px; font-weight: 700; color: #1e293b; }
.notif-dd-preview {
  font-size: 12px; color: #64748b; margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.notif-dd-time {
  flex-shrink: 0; font-size: 11px; color: #94a3b8; padding-top: 2px;
}

@media (max-width: 480px) {
  .notif-dropdown-panel { width: calc(100vw - 24px); left: 12px !important; }
}
