/* ---------------------------------------
   AGELA INLINE ALIGNMENT (FINAL VERSION)
   --------------------------------------- */

/* Core layout wrapper for one question row */
.agela-smart-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 14px;
    margin: 8px 0;
    line-height: 1.6;
}

/* Label (left text) */
.agela-row-label {
    flex: 0 0 auto;
    min-width: 190px;
    font-size: 15px;
    color: #333;
    font-weight: 500;
    white-space: nowrap;
}

/* Input + suffix block */
.agela-row-input {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Actual blank input */
.blank-input {
    width: 150px !important;
    height: 34px !important;
    padding-left: 28px !important;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
}

/* Question number inside the input */
.blank-number {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #777;
    pointer-events: none;
}

/* Inline-blank wrapper for automatic number bubble */
.inline-blank {
    position: relative;
    display: inline-block;
}

/* Suffix text (example: "km", "dollars", "today") */
.agela-suffix {
    font-size: 15px;
    color: #444;
    white-space: nowrap;
}

/* LIST STYLE (shoe rack, carpet, etc.) */
.agela-list-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 6px 0;
}

.agela-list-row-label {
    min-width: 150px;
    font-size: 15px;
    color: #333;
}

/* Table style spacing fix */
.agela-smart-row td,
.agela-smart-row th {
    padding: 10px 12px !important;
}
/* -----------------------------
   LIST STYLE ALIGNMENT FIX
------------------------------ */
.agela-list-row {
  display: flex;
  align-items: center;
  margin: 6px 0;
  gap: 16px;
}

.agela-list-label {
  flex: 0 0 180px;
  font-weight: 500;
  color: #333;
}

.agela-list-input {
  flex: 1;
}
