/* Základní nastavení pro celou stránku */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #f8f9fa;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Kontainer pro centrální obsah */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Nadpis */
h1 {
  text-align: center;
  font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Formulářové elementy */
label {
  font-weight: 600;
  color: #555;
  display: block;
  margin-bottom: 12px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Input a Select */
input[type='text'],
input[type='number'],
select {
  width: 100%;
  padding: 18px;
  margin: 12px 0;
  border: 2px solid #ddd;
  border-radius: 12px;
  font-size: 1.1rem;
  background-color: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

/* Efekt při fokusování */
input[type='text']:focus,
input[type='number']:focus,
select:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 8px rgba(52, 152, 219, 0.3);
}

/* Zaoblené checkboxy a radio tlačítka */
input[type='checkbox'],
input[type='radio'] {
  margin-right: 12px;
  accent-color: #3498db;
}

/* Tlačítko */
.btn-primary {
  background-color: #3498db;
  border: none;
  padding: 16px 30px;
  font-size: 1.2rem;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: #2980b9;
  transform: translateY(-3px);
}

.btn-primary:active {
  transform: translateY(3px);
}

/* Úpravy pro řádky */
.row {
  margin-bottom: 25px;
}

/* Střední rozložení pro jednotlivé elementy */
.col-6,
.col-4 {
  padding-left: 12px;
  padding-right: 12px;
}

/* Flexbox pro centre alignment */
.col-md-6 {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Neaktivní vstupy */
input[disabled] {
  background-color: #eaeaea;
  color: #777;
  cursor: not-allowed;
  font-style: italic;
}

/* Styl pro textová pole s výsledky */
input[type='text'] {
  font-weight: 600;
  color: #333;
  font-size: 1.1rem;
  padding-left: 15px;
  padding-right: 15px;
}

/* Textová pole pro čísla */
input[type='number'] {
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
  background-color: #f4f7fb;
}

/* Sekundární styly pro podnadpisy a popisky */
hr {
  border: 1px solid #ddd;
  margin: 40px 0;
}

/* Responsive design pro menší obrazovky */
@media (max-width: 768px) {
  .container {
    padding: 20px;
  }

  .col-md-6 {
    flex-direction: column;
  }

  .btn-primary {
    width: 100%;
    padding: 18px 0;
  }

  h1 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
}
