.dps-shell {
  background: transparent;
}

.dps-drawer[hidden] {
  display: none !important;
}

.dps-drawer {
  position: fixed;
  inset: 0;
  z-index: 99999;
}

.dps-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 24, 44, 0.46);
}

.dps-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(540px, 100%);
  height: 100%;
  background: #fff;
  box-shadow: -18px 0 48px rgba(13, 35, 66, 0.18);
  display: flex;
  flex-direction: column;
}

.dps-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--dps-space-4);
  padding: var(--dps-space-5) var(--dps-space-6);
  border-bottom: 1px solid var(--dps-border);
}

.dps-drawer__body {
  padding: var(--dps-space-6);
  overflow: auto;
}

.dps-toast-stack {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
  z-index: 100000;
}

.dps-toast {
  min-width: 250px;
  max-width: 380px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(15, 39, 68, 0.97);
  color: #fff;
  box-shadow: 0 16px 40px rgba(13, 35, 66, 0.18);
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.dps-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

body.dps-has-drawer {
  overflow: hidden;
}

.dps-text-link {
  color: var(--dps-accent-strong);
  text-decoration: none;
  font-weight: 600;
}

.dps-text-link:hover,
.dps-text-link:focus {
  text-decoration: underline;
}

.dps-text-link {
  color: var(--dps-accent-strong);
  text-decoration: none;
  font-weight: 600;
}

.dps-text-link:hover,
.dps-text-link:focus {
  text-decoration: underline;
}
