/* alert-toast.css */
.alert-toast-wrap {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  pointer-events: none;
}

.alert-toast-box {
  position: relative;
  background: #ffffff;
  color: #24282C;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  max-width: 20rem;
  pointer-events: auto;
}

.alert-toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: #C8A177;
  width: 100%;
  transition: width 3500ms linear;
}
