.sw-alert-root { display: inline-flex; align-items: center; }
.sw-alert-bell {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid #d5dde6;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff 0%, #f3f7fb 100%);
  color: #003358;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,51,88,.06);
  flex: 0 0 34px;
}
.sw-alert-bell:hover {
  border-color: #7eb6d9;
  box-shadow: 0 4px 12px rgba(0,82,145,.12);
}
.sw-alert-bell.hot { border-color: #d7a3a0; background: #fff7f6; }
.sw-alert-bell.locked { opacity: .42; }
.sw-alert-bell svg { width: 18px; height: 18px; display: block; }
.sw-alert-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  background: #c62828;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 16px;
  text-align: center;
}
.sw-alert-slot { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.sw-alert-mask { display: none; }
.sw-alert-panel {
  position: fixed;
  top: 58px;
  right: 16px;
  width: min(420px, calc(100vw - 24px));
  background: #fff;
  border: 1px solid #d5dde6;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0,51,88,.22);
  z-index: 4900;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.sw-alert-panel.dragging { cursor: grabbing; user-select: none; }
.sw-alert-panel .hd {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px 8px;
  border-bottom: 1px solid #e6ebf0;
  cursor: grab;
  touch-action: none;
  user-select: none;
}
.sw-alert-panel.dragging .hd { cursor: grabbing; }
.sw-alert-panel .hd h3 { font-size: 15px; color: #111; font-weight: 800; flex: 1; }
.sw-alert-panel .hd button,
.sw-alert-panel .act button {
  height: 26px;
  padding: 0 8px;
  border: 1px solid #d5dde6;
  border-radius: 6px;
  background: #fff;
  color: #111;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.sw-alert-panel .rule {
  padding: 6px 12px 8px;
  font-size: 11px;
  color: #111;
  line-height: 1.45;
}
.sw-alert-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 12px 8px;
}
.sw-alert-tabs button {
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid #d5dde6;
  background: #f7fafc;
  color: #111;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.sw-alert-tabs button.on { background: #003358; color: #fff; border-color: #003358; }
.sw-alert-search { padding: 0 12px 8px; }
.sw-alert-search input {
  width: 100%;
  height: 30px;
  border: 1px solid #d5dde6;
  border-radius: 6px;
  padding: 0 8px;
  font: inherit;
  font-size: 12px;
  color: #111;
}
.sw-alert-search input::placeholder { color: #111; opacity: 1; }
.sw-alert-pane {
  display: flex;
  align-items: stretch;
  min-height: 0;
  border-top: 1px solid #e6ebf0;
}
.sw-alert-list {
  flex: 1;
  min-width: 0;
  height: 440px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 8px 8px 10px 10px;
  overscroll-behavior: contain;
  scrollbar-width: auto;
  scrollbar-color: #6e97b8 #e8eef4;
}
.sw-alert-list::-webkit-scrollbar { width: 12px; }
.sw-alert-list::-webkit-scrollbar-track { background: #e8eef4; }
.sw-alert-list::-webkit-scrollbar-thumb {
  background: #6e97b8;
  border-radius: 8px;
  border: 2px solid #e8eef4;
}
.sw-alert-list::-webkit-scrollbar-thumb:hover { background: #005291; }
.sw-alert-rail {
  flex: 0 0 16px;
  position: relative;
  background: #e8eef4;
  border-left: 1px solid #d5dde6;
  cursor: pointer;
  user-select: none;
  touch-action: none;
}
.sw-alert-rail i {
  position: absolute;
  left: 2px;
  right: 2px;
  top: 0;
  background: #0078c0;
  min-height: 18px;
  border-radius: 6px;
}
.sw-alert-empty { padding: 28px 16px; text-align: center; color: #111; font-size: 13px; }
.sw-alert-card {
  border: 1px solid #e6ebf0;
  border-radius: 8px;
  padding: 8px 10px 7px;
  margin-bottom: 8px;
  background: #fbfcfe;
}
.sw-alert-card:last-child { margin-bottom: 0; }
.sw-alert-card.live { border-color: #f0c2b8; background: #fff8f6; }
.sw-alert-card .who { font-size: 13px; font-weight: 800; color: #111; }
.sw-alert-card .meta { font-size: 11px; color: #111; margin: 3px 0 6px; }
.sw-alert-card .why { font-size: 12px; color: #111; line-height: 1.45; }
.sw-alert-card .pct { color: #c62828; font-weight: 800; }
.sw-alert-card .act { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.sw-alert-card .act button.pri { background: #005291; color: #fff; border-color: #005291; }
.sw-alert-hits { margin-top: 8px; width: 100%; border-collapse: collapse; font-size: 11px; }
.sw-alert-hits th, .sw-alert-hits td { border-bottom: 1px solid #eef2f6; padding: 4px 4px; text-align: right; color: #111; }
.sw-alert-hits th { color: #111; font-weight: 700; }
.sw-alert-hits td.l, .sw-alert-hits th.l { text-align: left; }
.sw-alert-note {
  width: 100%;
  height: 52px;
  margin-top: 6px;
  border: 1px solid #d5dde6;
  border-radius: 6px;
  padding: 6px;
  font: inherit;
  font-size: 12px;
  color: #111;
  resize: vertical;
}
.sw-alert-logs { margin-top: 8px; font-size: 11px; color: #111; }
.sw-alert-logs div { padding: 3px 0; border-top: 1px dashed #e6ebf0; }
