
/**
 * Modern Premium Notification Styles
 */
.jq-toast-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: fixed;
  z-index: 999999 !important;
  pointer-events: none !important;
  margin: 0;
  padding: 0;
}
.jq-toast-wrap.bottom-left { bottom: 20px; left: 20px; }
.jq-toast-wrap.bottom-right { bottom: 20px; right: 20px; }
.jq-toast-wrap.bottom-center { bottom: 20px; left: 50%; transform: translateX(-50%); }
.jq-toast-wrap.top-left { top: 20px; left: 20px; }
.jq-toast-wrap.top-right { top: 20px; right: 20px; }
.jq-toast-wrap.top-center { top: 20px; left: 50%; transform: translateX(-50%); }

.jq-toast-single {
  pointer-events: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 !important;
  padding: 16px 20px 16px 50px !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important;
  background-color: #ffffff;
  color: #1e293b;
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.4;
  min-width: 280px;
  max-width: 400px;
  overflow: hidden;
  box-sizing: border-box;
  background-size: 24px !important;
  background-position: 15px center !important;
  background-repeat: no-repeat !important;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.jq-toast-single:hover {
  box-shadow: 0 15px 45px rgba(0,0,0,0.2) !important;
  transform: translateY(-2px);
}

.jq-toast-single h2 {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  margin: 0 0 4px 0;
  font-weight: 700;
  color: inherit;
}

/* Colors */
.jq-toast-single {
    color: #ffffff !important;
}
.jq-has-icon.jq-icon-info {
  background-color: #3b82f6 !important;
}
.jq-has-icon.jq-icon-success {
  background-color: #10b981 !important;
}
.jq-has-icon.jq-icon-warning {
  background-color: #f59e0b !important;
}
.jq-has-icon.jq-icon-error {
  background-color: #ef4444 !important;
}

/* Progress bar */
.jq-toast-loader {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.4) !important;
  border-radius: 0 0 0 12px;
}

/* Close Button */
.close-jq-toast-single {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 20px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  transition: 0.2s;
  line-height: 1;
}
.close-jq-toast-single:hover {
  color: rgba(255, 255, 255, 1);
}

@media (max-width: 480px) {
  .jq-toast-wrap {
    width: 90% !important;
    left: 5% !important;
    right: 5% !important;
    transform: none !important;
  }
  .jq-toast-wrap.top-center {
    top: 20px !important;
  }
  .jq-toast-single {
    width: 100% !important;
    min-width: 100% !important;
  }
}
