h1 {
  font-family: Arial, sans-serif;
  font-weight: bold;
  color: #ff0000;
}

h2 {
  font-family: Arial, sans-serif;
  font-weight: bold;
  color: black;
}

h3 {
  font-family: Arial, sans-serif;
  font-weight: bold;
  color: #ff0000;
}

a.odkaz:link, a.odkaz:visited {
  color: #0066CC;
  text-decoration: none;
  font-weight: bold;
  font-size: 110%;
}

a.odkaz:hover {
  color: #004A95;
  font-weight: bold;
} 

#bar-poweredby {display: none}

/* tlačítko pro tisk */

.print-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;

  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;

  background: #ff8c00;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, background 0.2s ease;
}

.print-button:hover {
  transform: scale(1.1);
  background: #fff;
}

.print-button img {
  width: 24px;
  height: 24px;
}

/* skrytí při tisku */
@media print {
  .print-button {
    display: none !important;
  }
}
