/* Custom Test Management Styles */

/* Help icon styling */
.help-icon {
  padding: 0 !important;
  margin-left: 5px;
  vertical-align: middle;
  color: #337ab7;
  border: none !important;
  background: none !important;
  box-shadow: none !important;
  font-size: 14px;
}

.help-icon:hover,
.help-icon:focus {
  color: #23527c;
  background: none !important;
  box-shadow: none !important;
  text-decoration: none;
}

.help-icon:active {
  color: #1a3a52;
  background: none !important;
  box-shadow: none !important;
}

/* Make background elements unselectable when help modal is open */
.modal-open-no-select {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}

.modal-open-no-select .modal {
  pointer-events: auto;
  user-select: auto;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
}

/* Ensure help modal content is readable */
#misc-cost-help-modal .modal-body {
  line-height: 1.6;
}

#misc-cost-help-modal .modal-body ul {
  margin-left: 20px;
}

#misc-cost-help-modal .modal-body li {
  margin-bottom: 5px;
} 