.dashboard-card .service-single-wrap p {
    text-align: justify !important;
}
.service-single-wrap {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}
.dashboard-card .service-single-wrap .service-single-section {
    padding: 15px;
    margin-bottom: 30px;
    background: #fff;
    border: 1px solid #a3a3a3;
    border-radius: 6px;
}

/* 2-column grid container */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* two equal columns */
  gap: 18px; /* spacing between columns and rows */
  align-items: start;
}

/* Column cell wrappers */
.form-cell {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Left / Right marker classes (for clarity in template) */
.col-left   { grid-column: 1 / 2; }
.col-right  { grid-column: 2 / 3; }

/* Make item span both columns (full width) */
.no-column {
  grid-column: 1 / -1;
}

/* Label + input styling */
.form-field-label {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
  color: #444;
}

/* Input base */
.full-width-input {
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 4px;
  border: 1px solid #d0d0d0;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(0,0,0,0.02);
  font-size: 14px;
  color: #222;
  transition: border-color .12s, box-shadow .12s;
}

/* textarea */
.full-width-input[type="text"],
textarea.full-width-input {
  resize: vertical;
  line-height: 1.3;
}

/* focus */
.full-width-input:focus {
  outline: none;
  border-color: #6aa0ff;
  box-shadow: 0 0 0 3px rgba(106,160,255,0.12);
}

/* disabled / readonly look */
.full-width-input[readonly],
.full-width-input[disabled],
textarea[readonly],
textarea[disabled] {
  background: #fafafa;
  color: #777;
  cursor: not-allowed;
}

/* Checkbox / radio group wrapper */
.inline-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* single inline control row for checkbox + label */
.option-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
}

/* style native checkbox/radio to look neat */
/* restore native radios & checkboxes and unify size */
.option-row input[type="checkbox"],
.option-row input[type="radio"] {
  appearance: auto !important;
  -webkit-appearance: auto !important;
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #6aa0ff;
  cursor: pointer;
}

.option-row input + span { margin-left: 8px; }


/* helper small description */
.form-help {
  font-size: 12px;
  color: #777;
  margin-top: 4px;
}


/* General input styling */
.full-width-input {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Inspection Steps */
.inspection-steps {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.inspection-column {
    flex: 1;
    min-width: 300px;
}

.inspection-item {
    display: flex;
    margin-bottom: 15px;
    gap: 10px;
    align-items: flex-start;
}

.inspection-item-label {
    width: 50%;
    padding-right: 10px;
}

.inspection-item-options {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.inspection-item-options input[type="radio"],
.inspection-item-options input[type="checkbox"] {
    margin-right: 6px;
    vertical-align: middle;
    position: relative;
    left: auto;
}

.nested-step {
    margin-bottom: 10px;
    font-weight: bold;
}

/* Repair Columns */
.dot-repair-columns {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.dot-repair-column {
    flex: 1;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 6px;
}

.dot-repair-column h2 {
    margin-top: 0;
    padding: 6px;
    color: #fff;
    text-align: center;
    border-radius: 4px;
}

.future-repair h2 {
    background: #f1c40f;
}

.immediate-repair h2 {
    background: #e74c3c;
}

.dot-repair-column label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.dot-repair-column input,
.dot-repair-column textarea {
    width: 100%;
    padding: 6px;
    margin-top: 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.question-block {
    margin-bottom: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.section-dot-steps .tire-rotation-steps {
    display: grid;
    
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.tire-column {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
}

.tire-item {
    margin-bottom: 14px;
}

.tire-item-options label {
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
}

.page-template-my_truck_user_technician-php  label{
    display: flex;
    gap: 10px;
}

