.ar-pa {
  --ar-pa-accent: #536a60;
  --ar-pa-accent-soft: #e7edeb;
  --ar-pa-card: #fff;
  --ar-pa-ink: #1f2430;
  --ar-pa-muted: #667085;
  --ar-pa-line: #d7dbe2;

  width: 100%;
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  color: var(--ar-pa-ink);
}

.ar-pa *,
.ar-pa *::before,
.ar-pa *::after {
  box-sizing: border-box;
}

.ar-pa__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.ar-pa__control {
  min-height: 38px;
  margin: 0;
  padding: 8px 14px;
  border: 0;
  border-radius: 6px;
  background: var(--ar-pa-accent);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  cursor: pointer;
  appearance: none;
  transition: background-color 180ms ease, color 180ms ease,
    border-color 180ms ease, transform 180ms ease;
}

.ar-pa__control--ghost {
  border: 1px solid var(--ar-pa-accent);
  background: #fff;
  color: var(--ar-pa-accent);
}

.ar-pa__control:hover {
  background: #40574d;
}

.ar-pa__control--ghost:hover {
  border-color: var(--ar-pa-accent);
  background: var(--ar-pa-accent-soft);
  color: var(--ar-pa-accent);
}

.ar-pa__control:active {
  transform: translateY(1px);
}

.ar-pa__control:focus-visible,
.ar-pa__trigger:focus-visible {
  outline: 3px solid rgba(83, 106, 96, 0.35);
  outline-offset: 3px;
}

.ar-pa__item {
  overflow: hidden;
  border: 1px solid var(--ar-pa-line);
  background: var(--ar-pa-card);
}

.ar-pa__item--depth-1 {
  margin: 0 0 14px;
  border-radius: 8px;
}

.ar-pa__item--depth-1:last-child {
  margin-bottom: 0;
}

.ar-pa__item--depth-2 {
  margin: 10px 0 0 18px;
  border-radius: 6px;
  background: #fbfbfc;
}

.ar-pa__item--depth-3 {
  margin: 8px 0 0 18px;
  border-radius: 6px;
  background: #fff;
}

.ar-pa__heading {
  margin: 0 !important;
  padding: 0 !important;
  font: inherit !important;
}

.ar-pa__trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
  transition: background-color 180ms ease;
}

.ar-pa__trigger:hover {
  background: var(--ar-pa-accent-soft);
}

.ar-pa__item--depth-1 > .ar-pa__heading .ar-pa__trigger {
  min-height: 63px;
  padding: 16px 20px;
}

.ar-pa__item--depth-2 > .ar-pa__heading .ar-pa__trigger {
  padding: 11px 16px;
}

.ar-pa__item--depth-3 > .ar-pa__heading .ar-pa__trigger {
  padding: 9px 14px;
}

.ar-pa__chevron {
  width: 14px;
  flex: 0 0 14px;
  color: var(--ar-pa-accent);
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  text-align: center;
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  transition: transform 200ms ease;
}

.ar-pa__trigger[aria-expanded="true"] > .ar-pa__chevron {
  transform: rotate(90deg);
}

.ar-pa__title {
  flex: 1 1 auto;
}

.ar-pa__item--depth-1 > .ar-pa__heading .ar-pa__title {
  color: #000;
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.55;
}

.ar-pa__item--depth-2 > .ar-pa__heading .ar-pa__title {
  color: #000;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.55;
}

.ar-pa__item--depth-3 > .ar-pa__heading .ar-pa__title {
  color: #38404c;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.55;
}

.ar-pa__panel[hidden] {
  display: none !important;
}

.ar-pa__item--depth-1 > .ar-pa__panel > .ar-pa__panel-inner {
  padding: 4px 20px 20px;
  border-top: 1px solid var(--ar-pa-line);
}

.ar-pa__item--depth-2 > .ar-pa__panel > .ar-pa__panel-inner {
  padding: 2px 18px 16px 24px;
  border-top: 1px dashed var(--ar-pa-line);
  color: #38404c;
  font-size: 14px;
  line-height: 1.55;
}

.ar-pa__item--depth-3 > .ar-pa__panel > .ar-pa__panel-inner {
  padding: 2px 16px 14px 22px;
  border-top: 1px dashed var(--ar-pa-line);
  color: #38404c;
  font-size: 13.5px;
  line-height: 1.55;
}

.ar-pa__item--depth-1 > .ar-pa__panel > .ar-pa__panel-inner > .ar-pa__content {
  margin: 12px 0 6px;
  color: #38404c;
  font-size: 14.5px;
  line-height: 1.55;
}

.ar-pa__item--depth-2 > .ar-pa__panel > .ar-pa__panel-inner > .ar-pa__content {
  margin-top: 10px;
}

.ar-pa__item--depth-3 > .ar-pa__panel > .ar-pa__panel-inner > .ar-pa__content {
  margin-top: 8px;
}

.ar-pa__content {
  overflow-x: auto;
  overflow-y: hidden;
}

.ar-pa__content > :first-child {
  margin-top: 0;
}

.ar-pa__content > :last-child {
  margin-bottom: 0;
}

.ar-pa__content table {
  width: 100% !important;
  min-width: 640px;
  border-collapse: collapse;
}

.ar-pa__content th,
.ar-pa__content td {
  padding: 9px 10px;
  border: 1px solid var(--ar-pa-line);
  vertical-align: top;
}

.ar-pa__content mark {
  background: #fff2a8;
  color: inherit;
}

.ar-pa .hublist {
  margin-top: 10px;
}

.ar-pa .hub {
  margin: 6px 0;
  padding: 8px 12px;
  border: 1px dashed #b9c0ca;
  border-radius: 6px;
  background: #fdfdfe;
}

.ar-pa .hub-name {
  font-size: 13.5px;
  font-weight: 700;
}

.ar-pa .hub-fields {
  color: var(--ar-pa-muted);
  font-size: 12.5px;
}

.ar-pa__status {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.ar-pa__error {
  padding: 12px 14px;
  border-left: 4px solid #b32d2e;
  background: #fff;
}

@media (max-width: 767px) {
  .ar-pa__toolbar {
    gap: 8px;
    margin-bottom: 14px;
  }

  .ar-pa__item--depth-1 {
    margin-bottom: 12px;
  }

  .ar-pa__item--depth-1 > .ar-pa__heading .ar-pa__trigger {
    min-height: 57px;
    padding: 13px 16px;
  }

  .ar-pa__item--depth-1 > .ar-pa__heading .ar-pa__title {
    font-size: 15.5px;
  }

  .ar-pa__item--depth-1 > .ar-pa__panel > .ar-pa__panel-inner {
    padding: 4px 16px 18px;
  }

  .ar-pa__item--depth-2,
  .ar-pa__item--depth-3 {
    margin-left: 0;
  }

  .ar-pa__item--depth-2 > .ar-pa__panel > .ar-pa__panel-inner,
  .ar-pa__item--depth-3 > .ar-pa__panel > .ar-pa__panel-inner {
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ar-pa__control,
  .ar-pa__trigger,
  .ar-pa__chevron {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media print {
  .ar-pa__toolbar {
    display: none !important;
  }

  .ar-pa__panel[hidden] {
    display: block !important;
  }
}
