/* List group item active state: Background and border color set to #24a2ab */
.list-group-item.active {
  background-color: #24a2ab;
  border-color: #24a2ab;
}

/* Tab title: Text color set to #24a2ab with Tahoma font and !important to ensure it overrides other styles */
.tab-title {
  color: #24a2ab !important;
  font-family: Tahoma, sans-serif !important;  /* Tahoma font */
}

/* Check icon: Color set to #86d884 for the check mark */
.fa-check:before {
  color: #86d884;
}

/* Field label: Uses Tahoma font with font weight set to 600 for bold text */
.field-label {
  font-family: Tahoma, sans-serif !important; /* Tahoma font */
  font-weight: 600 !important;  /* Font weight set to 600 */
}

/* Button styling: Launch entity lookup button with background and border color of #24a2ab */
.btn.btn-default.launchentitylookup {
  background-color: #24a2ab;
  border-color: #24a2ab;
  color: white; /* Optional: makes text white for contrast */
}

/* Button hover state: Darker background and border color when hovered */
.btn.btn-default.launchentitylookup:hover {
  background-color: #1a8c8c; /* Optional: darker shade on hover */
  border-color: #1a8c8c;
}
