/* ============================================================
   Toast Notifications
   Extracted from app.blade.php for modularity
   ============================================================ */
.fh-toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.fh-toast {
  pointer-events: auto;
  background: #FAF8F6;
  color: #1C1C1C;
  padding: 0;
  max-width: 380px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transform: translateX(calc(100% + 40px));
  transition: transform 0.3s ease;
  position: relative;
  display: flex;
  align-items: stretch;
  border: 1px solid #E5E2DB;
}

.fh-toast.is-visible {
  transform: translateX(0);
}

.fh-toast.is-hiding {
  transform: translateX(calc(100% + 40px));
}

.fh-toast__img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  flex-shrink: 0;
  margin: 10px 0 10px 10px;
}

.fh-toast__body {
  padding: 12px 32px 12px 12px;
  font-size: 12px;
  line-height: 1.5;
  flex: 1;
}

.fh-toast__body strong {
  font-weight: 500;
}

.fh-toast a {
  color: #1C1C1C;
  text-decoration: underline;
  font-weight: 500;
}

.fh-toast__close {
  position: absolute;
  top: 6px;
  right: 6px;
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  padding: 4px;
}

.fh-toast__close:hover {
  color: #1C1C1C;
}

@media (max-width: 480px) {
  .fh-toast-container {
    bottom: 12px;
    right: 12px;
    left: 12px;
  }
  .fh-toast {
    max-width: 100%;
  }
}
