#oais-alert-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  width: 348px;
  height: auto;
  max-height: 100vh;
  overflow-y: hidden;
  z-index: 2147483647;
  padding: 1rem 1rem 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.oais-alert-box {
  display: flex;
  border-radius: 4px;
  background-color: #4cb050;
  color: #fff;
  cursor: pointer;
  user-select: none;
  min-height: 48px;
  align-items: center;
  transition: opacity 300ms;
}

.oais-alert-box.oais-alert-error {
  background-color: #e65e5e;
}

.oais-alert-box.oais-alert-info {
  background-color: #ffa500;
}

.oais-alert-box.oais-alert-warn {
  background-color: #5192db;
}

.oais-alert-box.oais-alert-warning {
  background-color: #ffa500;
}

.oais-alert-box-icon {
  width: 64px;
  min-width: 64px;
  margin-right: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
}

.oais-alert-box-content {
  padding: 6px 1rem 6px 0;
  font-size: 0.875rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%;
}

.oais-confirm-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  background: rgba(17, 24, 39, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.oais-confirm-dialog {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  padding: 1.25rem 1.25rem 1rem;
  text-align: center;
}

.oais-confirm-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffa500;
  color: #fff;
  font-size: 1.25rem;
}

.oais-confirm-icon.oais-alert-error {
  background: #e65e5e;
}

.oais-confirm-icon.oais-alert-info,
.oais-confirm-icon.oais-alert-warning {
  background: #ffa500;
}

.oais-confirm-icon.oais-alert-warn {
  background: #5192db;
}

.oais-confirm-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.oais-confirm-content {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.5;
  margin-bottom: 1rem;
  word-wrap: break-word;
}

.oais-confirm-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.oais-confirm-btn {
  min-width: 96px;
  border: 0;
  border-radius: 6px;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}

.oais-confirm-btn-cancel {
  background: #e5e7eb;
  color: #374151;
}

.oais-confirm-btn-confirm {
  background: #224dcb;
  color: #fff;
}