#toast-container .toast {
  background-color: #ffffff;
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  max-width: 350px;
  opacity: 1 !important;
}

#toast-container .toast-header {
  background-color: transparent;
  border-bottom: none;
  padding: 15px 15px 5px 20px;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#toast-container .toast-header strong {
  font-size: 1rem;
  font-weight: 700;
}

#toast-container .toast-body {
  padding: 0 20px 15px 20px;
  color: #888;
  font-size: 0.85rem;
  line-height: 1.4;
}

#toast-container .close {
  color: #000 !important;
  text-shadow: none;
  opacity: 0.5;
  font-weight: 300;
  font-size: 2rem;
  outline: none !important;
}

#toast-container .close:hover {
  opacity: 0.6;
}

#toast-container .action-container {
  padding-top: 16px;
  text-align: right;
}

#toast-container .action {
  background-color: var(--color-bg-action);
  color: var(--color-text-action);
  border: none;
  border-radius: var(--radius-btn);
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.15s;
  flex-shrink: 0;
}

#toast-container .action:hover {
  background-color: #bfdbfe;
}

#toast-container .action:active {
  background-color: #93c5fd;
}