.float-group {
  position: relative;

  margin-bottom: 1.5rem;
  width: 60%;
}

.float-input {
  width: 100%;
  padding: 14px 12px;
  border: 2px solid #777;
  border-radius: 6px;
  font-size: 16px;
  background: transparent;
  transition: border-color 0.25s ease;
}

.float-input:focus {
  border-color: #3b82f6;
  outline: none;
}

.float-label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0 6px;
  background: white;
  color: #777;
  font-size: 16px;
  transition: 0.25s ease;
  pointer-events: none;
}

/* Float label when input active or filled */
.float-input:focus + .float-label,
.float-input:not(:placeholder-shown) + .float-label {
  top: -10px;
  left: 10px;
  font-size: 13px;
  color: #3b82f6;
}

.field-error {
  color: #e74c3c;
  font-size: 0.85em;
  margin-top: 5px;
}

.field-help {
  color: #95a5a6;
  font-size: 0.85em;
  margin-top: 4px;
}
.required-star {
  color: red;
  margin-left: 3px;
}

.estimate-list {
  list-style-type: none;
}

/* Ensure any label text inside table cells is hidden so inputs align horizontally */
.table td label,
.table td .helptext,
.table td .field-label {
  display: none !important;
}

/* Make form controls fill the cell and sit inline */
.table td input.form-control,
.table td select.form-control,
.table td textarea.form-control {
  display: inline-block;
  width: 100%;
  margin: 0;
}

/* Small spacing for remove button */
.remove-row {
  display: inline-block;
  vertical-align: middle;
}

.bb-5{
    border-bottom: solid 10px green;
    border-radius: 20px;
    margin-bottom: 5px;
}
.my-red-label {
    /* Define your specific red color */
    color: #cc0000 !important; 
    
    /* Optional: make the label bold */
    font-weight: bold;
}