.cms-toast-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.cms-toast-overlay.cms-toast-overlay-show {
  opacity: 1;
}

.cms-toast-modal {
  width: min(420px, 100%);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  padding: 32px 28px 28px;
  text-align: center;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.28s ease;
}

.cms-toast-overlay-show .cms-toast-modal {
  transform: translateY(0) scale(1);
}

.cms-toast-modal__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f766e;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.16), rgba(37, 99, 235, 0.08));
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.18);
}

.cms-toast-modal__title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.35;
  color: #0f172a;
  font-weight: 700;
}

.cms-toast-modal__desc {
  margin: 0;
  color: #64748b;
  line-height: 1.7;
  font-size: 15px;
}

.cms-toast-modal__timer {
  margin-top: 18px;
  font-size: 13px;
  color: #94a3b8;
}

.detail-related-empty {
  color: #94a3b8;
  font-size: 14px;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  color: #64748b;
  padding: 48px 16px;
}
