.wd-ops { display: grid; gap: 1.1rem; }
.wd-ops-lead { max-width: 62rem; }
.wd-ops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 0.7rem;
}
.wd-ops-card {
  text-align: left;
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid #2a2a32;
  background: #16161b;
  color: inherit;
  cursor: pointer;
}
.wd-ops-card.is-on { border-color: #c9a227; background: #1d1d24; }
.wd-ops-card strong { display: block; font-family: "Barlow Condensed", sans-serif; font-size: 1.15rem; letter-spacing: 0.03em; }
.wd-ops-card .wd-ops-meta { display: flex; justify-content: space-between; gap: 0.5rem; margin-top: 0.35rem; font-size: 0.85rem; }
.wd-ops-dot { display: inline-block; width: 0.55rem; height: 0.55rem; border-radius: 50%; margin-right: 0.35rem; background: #6b7280; }
.wd-ops-dot.is-ok { background: #1DD65C; }
.wd-ops-dot.is-bad { background: #FA503E; }
.wd-ops-toolbar { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.wd-ops-refresh { font-variant-numeric: tabular-nums; }
.wd-ops-meta-line { display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; font-size: 0.92rem; }
.wd-ops-chat { display: flex; flex-wrap: wrap; gap: 0.45rem; align-items: center; }
.wd-ops-chat .input { min-width: 16rem; flex: 1 1 16rem; }
.wd-ops-map { display: flex; flex-wrap: wrap; gap: 0.45rem; align-items: center; }
.wd-ops-map select { min-width: 12rem; }

.wd-ops-ping {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-variant-numeric: tabular-nums;
}
.wd-ops-pulse {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #1DD65C;
  box-shadow: 0 0 0 0 rgba(29, 214, 92, 0.55);
  animation: wd-ops-pulse 1.6s ease-out infinite;
}
.wd-ops-pulse.is-mid {
  background: #eab308;
  box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.5);
}
.wd-ops-pulse.is-bad {
  background: #FA503E;
  box-shadow: 0 0 0 0 rgba(250, 80, 62, 0.5);
}
@keyframes wd-ops-pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 currentColor; opacity: 1; }
  70% { transform: scale(1.15); box-shadow: 0 0 0 0.45rem transparent; opacity: 0.85; }
  100% { transform: scale(1); box-shadow: 0 0 0 0 transparent; opacity: 1; }
}

.wd-ops-name {
  background: none;
  border: 0;
  padding: 0;
  color: #e8c547;
  font: inherit;
  cursor: pointer;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.wd-ops-name:hover { color: #f3d96a; }
.wd-mod-table tbody tr.wd-ops-row { cursor: pointer; }
.wd-mod-table tbody tr.wd-ops-row:hover { background: #1a1a20; }

.wd-ops-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(8, 8, 10, 0.72);
  backdrop-filter: blur(6px);
}
.wd-ops-modal {
  position: relative;
  width: min(28rem, 100%);
  padding: 1.25rem 1.3rem 1.15rem;
  border: 1px solid #c9a227;
  background: #121217;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}
.wd-ops-x {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  color: #e8c547;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.wd-ops-modal-head {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  padding-right: 1.6rem;
}
.wd-ops-avatar {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  object-fit: cover;
  border: 1px solid #3a3a42;
}
.wd-ops-avatar--empty {
  display: grid;
  place-items: center;
  background: #1d1d24;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.6rem;
  color: #c9a227;
}
.wd-ops-modal dl {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0.35rem 0.7rem;
  margin: 0.9rem 0;
}
.wd-ops-modal dt { color: #9ca3af; }
.wd-ops-modal dd { margin: 0; }
.wd-ops-modal-acts { display: grid; gap: 0.45rem; }

.wd-ops-feed-tabs { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.wd-ops-feed-tabs .btn.is-on { border-color: #c9a227; color: #e8c547; }
.wd-ops-feed {
  display: grid;
  gap: 0.35rem;
  max-height: 22rem;
  overflow: auto;
  padding: 0.15rem 0;
}
.wd-ops-kill {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.55rem;
  align-items: center;
  padding: 0.45rem 0.55rem;
  border: 1px solid #2a2a32;
  background: #16161b;
  font-size: 0.92rem;
}
.wd-ops-kill time { color: #9ca3af; font-variant-numeric: tabular-nums; font-size: 0.8rem; }
