/* Floating Need Help button */
#lsf-help-button {
  position: fixed;
  bottom: 70px;
  right: 0;
  width: 40px;
  height: 100px;
  background-color: rgba(0, 51, 161, 0.6667) !important;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: bold;
  cursor: pointer;
  z-index: 9999;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  transition: background 0.3s;
}

#lsf-help-button:hover {
  background-color: rgba(0, 51, 161, 1) !important;
}

/* Help Form wrapper */
#lsf-help-form-wrapper {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  background: white;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 9999;
  border-radius: 8px;
  overflow: hidden;
}

/* Header with close button */
#lsf-help-form-header {
  background-color: rgba(0, 51, 161, 0.6667) !important; /*#0073aa;*/
  color: #fff;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#lsf-help-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* Form body */
#lsf-help-form-body {
  padding: 15px;
}

#lsf-help-form input[type="email"],
#lsf-help-form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 14px;
}

#lsf-help-form button[type="submit"] {
  background-color: rgba(0, 51, 161, 0.6667) !important;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 4px;
  width: 100%;
  cursor: pointer;
}

#lsf-help-form button[type="submit"]:hover {
  background-color: rgba(0, 51, 161, 1) !important;
}
