.pwa-toast {
  position: fixed;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  max-width: 95%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border: 1px solid #eee;
  z-index: 1000;
  transition: top 0.4s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-family: MTNBrighterSans-Regular, Century Gothic, Arial, sans-serif;;
  touch-action: pan-y;
}

/* Show state */
.pwa-toast.show {
  top: 20px;
}

/* Inner layout */
.pwa-toast-content {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pwa-toast-text{
  color: #2e2e2e;
}
.pwa-toast-text strong {
  font-size: 15px;
}

.pwa-toast-text p {
  font-size: 13px;
  margin: 4px 0 0;
  color: #555;
}

/* Buttons */
.pwa-toast-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.pwa-btn-primary {
  background: #f9c602;
  border: none;
  padding: 6px 16px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-family: MTNBrighterSans-Regular, Century Gothic, Arial, sans-serif;
}

.pwa-btn-secondary {
  background: #eee;
  border: none;
  padding: 6px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-family: MTNBrighterSans-Regular, Century Gothic, Arial, sans-serif;
}
/* .pwa-toast-success {
  border-left: 4px solid #28a745;
} */


.pwa-toast-success.show {
  top: 20px;
}

@media (max-width: 480px) {
  .pwa-toast-content {
    padding: 12px;
  }
}

@media (max-width: 790px) {

  .pwa-toast {
    width: 92%;
    max-width: 92%;
    border-radius: 6px;
  }

    .pwa-toast-content {
    padding: 4px 4px;
    gap: 6px;
  }

  .pwa-toast-text strong {
    font-size: 12px;
  }


  .pwa-toast-text p {
    font-size: 12px;
  }

  .pwa-toast-actions {
    gap: 6px;
  }

  .pwa-btn-primary,
  .pwa-btn-secondary {
    padding: 5px 12px;
    font-size: 12px;
  }

}
.dark-design .pwa-toast {
  background-color: #2e2e2e;
  border: none;
}
.dark-design .pwa-toast-text p{
  color: #ffffff;
}
.dark-design .pwa-toast-text{
  color: #ffffff;
}
.pwa-toast-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  color: #666;
  line-height: 1;
}
.dark-design .pwa-toast-close{
  color: #fff;
}

.pwa-toast-close:hover {
  color: #000;
}
