/* 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); /*#0073aa;*/
  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
, .wpforms-submit:hover {
  background-color: rgba(0, 51, 161, 1) !important;/*#005f8d;*/
  
}

/* Help Form wrapper (hidden by default) */
#lsf-help-form-wrapper {
  display: none;
  position: fixed;
  bottom: 70px;
  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;
}

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

/* Submit button */
.wpforms-submit{
  background-color: rgba(0, 51, 161, 0.6667) !important; /*#0073aa;*/

}

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

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

/* volod: hide forms*/
.lsf-form-hidden{
    display: none;
}

/* volod: reduce space */
div.wpforms-container-full:not(:empty){
    margin: 2px auto !important;
}