/* =========================================================
   BLUE SKIES — toast notifications (success / failure)
   ========================================================= */
#bsToastStack{
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: min(360px, 90vw);
}

.bs-toast{
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-left: 4px solid var(--hill-blue, #1567C4);
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .25s ease, transform .25s ease;
}
.bs-toast.show{ opacity: 1; transform: translateX(0); }
.bs-toast.error{ border-left-color: #c0392b; }

.bs-toast .icon{
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 1px;
  color: var(--hill-blue, #1567C4);
}
.bs-toast.error .icon{ color: #c0392b; }

.bs-toast .body{ flex: 1; font-size: .87rem; color: #222; line-height: 1.4; }
.bs-toast .close-btn{
  background: none; border: none; color: #999; font-size: 1rem; line-height: 1;
  padding: 0; margin-left: 4px;
}
.bs-toast .close-btn:hover{ color: #333; }

@media (max-width: 480px){
  #bsToastStack{ left: 12px; right: 12px; top: 12px; max-width: none; }
}
