/* Základný kontajner */
#rozhodovaci-formular {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  font-family: system-ui, sans-serif;
  font-size: 16px;
  color: #333;
}

/* Nadpisy */
#rozhodovaci-formular h2,
#rozhodovaci-formular h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.rf-section {
  margin-bottom: 2rem;
}

.rf-question {
  margin-bottom: 1.2rem;
}

/* Štýl pre textové pole */
#rf-tuzba {
  width: 100%;
  padding: 0.6rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

/* Posuvník */
.rf-range {
  width: 100%;
  margin-top: 0.3rem;
  appearance: none;
  height: 6px;
  border-radius: 4px;
  background: #ddd;
  outline: none;
  transition: background 0.2s;
}
.rf-range::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #3498db;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 0 3px rgba(0,0,0,0.3);
}
.rf-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #3498db;
  cursor: pointer;
}

/* Tlačidlo */
#rf-vyhodnotit {
  background: #2ecc71;
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
#rf-vyhodnotit:hover {
  background: #27ae60;
}

/* Výstup */
#rf-vysledok {
  background: #fff;
  border-left: 5px solid #2ecc71;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

#rf-meter {
  margin: 1rem 0;
}

#rf-odporucanie {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

#rf-emocia-rozum {
  font-style: italic;
  color: #555;
}

.rf-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.3rem;
  font-size: 0.9rem;
  color: #555;
  padding: 0 4px;
}
.rf-labels span {
  text-align: center;
}


/* Doplnkové otázky */
#rf-extra.open {
  display: block !important;
}
#rf-extra {
  display: none;
  padding: 1rem;
  background: #eef6f9;
  border-radius: 10px;
  margin-top: 1rem;
}

/* Reakcia na menšie obrazovky */
@media screen and (max-width: 600px) {
  #rozhodovaci-formular {
    padding: 1rem;
  }
  #rf-vyhodnotit {
    width: 100%;
  }
}