/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/
.numeric input[type="text"],
.numeric input[type="number"] {
  text-align: left;
}
/* --- Sticky Header für Matrixfragen (Array) in Fruity --- */
@media (min-width: 768px) {

  /* macht den Antwortbereich scrollbar (Höhe anpassen) */
  .question-container .answer-container {
    position: relative;
    max-height: 500px;   /* <- nach Bedarf ändern */
    overflow: auto;
  }

  /* sticky Kopfzeile */
  .question-container table.subquestion-list thead th,
  .question-container table.subquestion-list thead td {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #ffffff; /* <- an euer Design anpassen */
  }

  /* optional: wiederholte Überschriften ausblenden (falls vorhanden) */
  .question-container table.subquestion-list .ls-heading-repeat {
    display: none;
  }
}