/* Barevné pozadí řádků */
.radek-tmavy {
  background-color: #41474c;
  border-top: 1px solid #ccc;
  color: white;
}

.radek-svetly {
  background-color: var(--bs-gray-200);
  border-top: 1px solid #ccc;
}

.radek-bily {
  background-color: #ffffff;
  border-top: 1px solid #ccc;
}

/* Zarovnání textu */
.stred-textu {
  text-align: center;
  vertical-align: middle;
  height: 100%;
}

.vlevo-text {
  text-align: left;
  vertical-align: middle;
  height: 100%;
}

/* Světlý text (např. nadpisy v tmavém řádku) */
.svetly-text {
  color: white;
}

/* Tlačítka ikon */
.icon-button {
  border: none;
  background: none;
  color: blue;
  padding: 0;
  margin: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* Input pole pro rozměry */
input[type="number"] {
  width: 80px;
  text-align: center;
  padding: 2px 4px;
}

/* Input pole pro název místnosti */
input[type="text"][name="nazev"] {
  width: 100%;
  max-width: 300px;
  padding: 4px 8px;
  font-size: 1rem;
}

/* Kontejner formuláře */
#roomForm .container {
  width: 90%;
  margin: auto;
}

/* Řádky formuláře */
#roomForm .row {
  width: 100%;
  padding: 4px 0;
}

/* Tlačítka dole */
#tlacitka button {
  margin-right: 20px;
}


/* prosvícení tlačítka a orámování obrázku vendora */

  .vendor-img {
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s ease;
    border-radius: 5px;
    max-width: 100%;
  }
  .vendor-img.selected {
    border: 2px solid #007bff;
  }
  #next_step_btn:disabled {
    opacity: 0.5;
    pointer-events: none;
  }
