.hb-toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hb-toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  min-width: 320px;
  max-width: 400px;
  border-left: 6px solid;
  padding: 16px 20px;
  position: relative;
  animation: fadeSlideIn 0.3s ease-out;
  font-family: 'Segoe UI', sans-serif;
}

.hb-toast-icon {
  font-size: 24px;
  line-height: 1;
  margin-top: 2px;
}

.hb-toast-content {
  flex-grow: 1;
}

.hb-toast-title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}

.hb-toast-message {
  font-size: 14px;
  color: #333;
}

.hb-toast button {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 18px;
  color: #aaa;
  cursor: pointer;
}
.hb-toast button:hover {
  color: #000;
}

/* Type Colors */
.hb-toast-success {
  border-color: #28a745;
}
.hb-toast-success .hb-toast-title,
.hb-toast-success .hb-toast-icon {
  color: #28a745;
}

.hb-toast-error {
  border-color: #dc3545;
}
.hb-toast-error .hb-toast-title,
.hb-toast-error .hb-toast-icon {
  color: #dc3545;
}

.hb-toast-warning {
  border-color: #ffc107;
}
.hb-toast-warning .hb-toast-title,
.hb-toast-warning .hb-toast-icon {
  color: #ff9800;
}

.hb-toast-info {
  border-color: #007bff;
}
.hb-toast-info .hb-toast-title,
.hb-toast-info .hb-toast-icon {
  color: #007bff;
}

@keyframes fadeSlideIn {
  from { transform: translateX(100%) scale(0.95); opacity: 0; }
  to   { transform: translateX(0) scale(1); opacity: 1; }
}

/* -----------------------------------
   TOAST ALERT STYLES (hb-alert)
----------------------------------- */

/* ------------------------------
   SWEET MODAL LIGHT STYLE
------------------------------ */

.hbsweet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.hbsweet-modal {
  background: #fff;
  padding: 20px 25px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 300px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  animation: fadeInScale 0.3s ease;
  position: relative;
}

.hbsweet-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -60px auto 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.hbsweet-icon-circle.success {
  background: linear-gradient(145deg, #34d058, #28a745);
}

.hbsweet-icon-circle.error {
  background: linear-gradient(145deg, #ff6b6b, #e74c3c);
}

.hbsweet-icon-circle.warning {
  background: linear-gradient(145deg, #fbd786, #f5af19);
}

.hbsweet-icon-circle.info {
  background: linear-gradient(145deg, #6dd5fa, #2980b9);
}

.hbsweet-title {
  font-size: 20px;
  font-weight: bold;
  color: #222;
  margin-bottom: 8px;
}

.hbsweet-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}

.hbsweet-btn {
  padding: 10px 24px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hbsweet-btn.success {
  background: #28a745;
}

.hbsweet-btn.error {
  background: #e74c3c;
}

.hbsweet-btn.warning {
  background: #f39c12;
}

.hbsweet-btn.info {
  background: #3498db;
}

.hbsweet-btn:hover {
  opacity: 0.9;
}

@keyframes fadeInScale {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}