.wx-suite-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 16px 0;
  padding: 15px 18px;
  border: 1px solid rgba(220, 237, 234, 0.92);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 30px rgba(57, 89, 95, 0.08);
}

.wx-suite-toolbar strong {
  display: block;
  margin-top: 3px;
  color: var(--ink, #18343e);
  font-size: 17px;
}

.wx-suite-eyebrow {
  display: block;
  color: var(--wx-season-accent, #2b9b8d);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.wx-suite-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.wx-suite-button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(47, 148, 134, 0.28);
  border-radius: 12px;
  color: #17796f;
  background: rgba(235, 250, 246, 0.88);
  font-size: 12px;
  font-weight: 800;
}

.wx-suite-button span {
  margin-right: 5px;
}

.wx-suite-button:disabled {
  cursor: wait;
  opacity: .55;
}

.wx-suite-toast {
  position: fixed;
  z-index: 10001;
  right: 24px;
  bottom: 24px;
  max-width: min(360px, calc(100vw - 32px));
  padding: 12px 16px;
  border: 1px solid rgba(47, 148, 134, 0.28);
  border-radius: 14px;
  color: #18584f;
  background: rgba(239, 255, 250, .96);
  box-shadow: 0 16px 36px rgba(35, 74, 75, .18);
  font-size: 13px;
}

.wx-suite-toast.is-error {
  border-color: rgba(194, 86, 73, .3);
  color: #9b3d39;
  background: rgba(255, 245, 243, .97);
}

.wx-suite-dialog {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
}

.wx-suite-dialog-scrim {
  position: absolute;
  inset: 0;
  background: rgba(19, 48, 55, .28);
  backdrop-filter: blur(5px);
}

.wx-suite-dialog-panel {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
  max-height: min(720px, calc(100vh - 36px));
  overflow: auto;
  padding: 22px;
  border: 1px solid rgba(220, 237, 234, .94);
  border-radius: 24px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 80px rgba(19, 48, 55, .24);
}

.wx-suite-dialog-panel header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.wx-suite-dialog-panel h2 {
  margin: 5px 0 0;
  color: var(--ink, #18343e);
}

.wx-suite-dialog-panel p {
  margin: 7px 0 0;
  color: #6f858b;
  font-size: 12px;
}

.wx-suite-dialog-close {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #dcefed;
  border-radius: 14px;
  color: #17796f;
  background: #f3fbf9;
  font-size: 22px;
}

.wx-suite-audit-table-wrap {
  overflow-x: auto;
  margin-top: 18px;
}

.wx-suite-audit-table {
  width: 100%;
  border-collapse: collapse;
  color: #38575e;
  font-size: 12px;
}

.wx-suite-audit-table th,
.wx-suite-audit-table td {
  padding: 10px 8px;
  border-bottom: 1px solid #edf3f1;
  text-align: left;
  white-space: nowrap;
}

.wx-suite-audit-table th {
  color: #688087;
  font-size: 10px;
  font-weight: 800;
}

@media (max-width: 680px) {
  .wx-suite-toolbar {
    align-items: flex-start;
    flex-direction: column;
    margin: 10px 12px;
    padding: 14px;
  }

  .wx-suite-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .wx-suite-button {
    flex: 1 1 auto;
  }

  .wx-suite-dialog-panel {
    padding: 17px;
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wx-suite-dialog-scrim {
    backdrop-filter: none;
  }
}
