.sf-help-message {
  position: fixed;
  bottom: 60px;
  right: 100px;
  background: white;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 500;
  max-width: 250px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  display: none; /* Hidden by default */
  animation: slideIn 0.3s ease-out;
}

.sf-help-message.show {
  display: block;
}

.sf-help-close {
  position: absolute;
  top: 5px;
  right: 8px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s;
}

.sf-help-close:hover {
  background-color: #f0f0f0;
  color: #333;
}

.sf-help-content {
  padding-right: 25px;
  color: #333;
}

.sf-help-text {
  padding-right: 10px;
  float: left;
}

.sf-help-text h5 {
  margin-bottom: 10px;
  color: #af006e;
  margin-top: 5px;
}

.sf-help-text p {
  font-size: 12px;
  margin-bottom: 5px;
  margin-top: 5px;
}

.sf-help-image {
  float: left;
  max-width: 40px;
  margin-top: 7px;
}

.sf-help-image img {
  width:100%;
}

/* Slide in animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
.sf-help-message {
    display: none!important;
  }
}
