  .form-container {
    display: flex;
    flex-direction: row;
/*    flex-wrap: wrap;*/
    gap: 2px;
  }

  /* Základní vzhled řádku */
  .radio-row {
    background-color: WhiteSmoke;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 2px 6px 2px 2px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap; /* Text zůstane v kuse */
    transition: all 0.2s ease;
/*    transition: background-color 0.2s, border-color 0.2s; */
  }

  /* STYL PŘI KLIKNUTÍ (pomocí :has) */
  /* Pokud label obsahuje zaškrtnutý input, změň jeho styl */
  .radio-row:has(input:checked) {
    background-color: #f0f7ff;
    border-color: #007bff;
    color: #0056b3;
/*    font-weight: 600; */
    }
