/*!
 * Toastify CSS with KidsZoon Theme Styling
 */
.toastify {
  padding: 14px 20px;
  color: #ffffff;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(7, 22, 51, 0.18), 0 4px 10px rgba(7, 22, 51, 0.1);
  background: linear-gradient(135deg, #071633, #1e293b);
  position: fixed;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  max-width: calc(100% - 32px);
  z-index: 9999999;
  font-family: 'Outfit', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  box-sizing: border-box;
}

.toastify.on {
  opacity: 1;
}

.toastify-right {
  right: 20px;
}

.toastify-left {
  left: 20px;
}

.toastify-top {
  top: -150px;
}

.toastify-bottom {
  bottom: -150px;
}

.toast-close {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  padding: 2px 7px;
  margin-left: 14px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: bold;
  opacity: 0.9;
  transition: all 0.2s ease;
}

.toast-close:hover {
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.toastify-avatar {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
}

/* Custom KidsZoon Toast Variants */
.kz-toast-success {
  background: linear-gradient(135deg, #059669 0%, #10B981 100%) !important;
  color: #FFFFFF !important;
  border: 1.5px solid #34D399 !important;
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.35) !important;
}

.kz-toast-error {
  background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%) !important;
  color: #FFFFFF !important;
  border: 1.5px solid #F87171 !important;
  box-shadow: 0 12px 28px rgba(239, 68, 68, 0.35) !important;
}

.kz-toast-info {
  background: linear-gradient(135deg, #7652E8 0%, #906BFF 100%) !important;
  color: #FFFFFF !important;
  border: 1.5px solid #B49BFF !important;
  box-shadow: 0 12px 28px rgba(118, 82, 232, 0.35) !important;
}

@media only screen and (max-width: 480px) {
  .toastify-right,
  .toastify-left {
    left: 16px !important;
    right: 16px !important;
    max-width: calc(100% - 32px) !important;
    margin: 0 auto !important;
    transform: none !important;
  }
}
