
/* Gesamter Auswahlblock */
.theme-feetype-box{
  display: flex;
  align-items: center;              /* 🔥 vertikale Zentrierung */
}

/* Linke Spalte: Radio */
.theme-feetype-box > .col-sm-2{
  display: flex;
  align-items: center;              /* vertikal mittig zum Bild */
  justify-content: center;           /* horizontal mittig */
}

/* Radio Button Styling */
.theme-feetype-box input[type="radio"]{
  margin: 0 !important;
  transform: scale(1.2);
  cursor: pointer;
}

/* Rechte Spalte: Bild + Text */
.theme-feetype-box .col-xs-6{
  min-width: 240px;                 /* verhindert schmale Umbrüche */
}

/* Label: Bild oben, Text darunter */
.theme-feetype-box .col-xs-6 label{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  cursor: pointer;
}

/* Bild / Thumbnail */
.fn-option-img{
  width: 250px;                     /* anpassen falls nötig */
  height: 115px;                    /* anpassen falls nötig */
  object-fit: contain;
  cursor: pointer;
}

/* Text unter dem Bild */
.fn-option-text strong{
  display: block;
}
