/* Telo stranky */
body {
  background-color: white;
  line-height: 1.5;
}
/* Nadpisy */
h1.info {
  font-family: Arial; 
  font-size: 20px;
  text-decoration: underline;
}
h1 {
  font-family: Arial; 
  font-size: 20px;
  text-decoration: underline;
}
h2.info {
  font-family: Arial; 
  font-size: 18px;
  text-decoration: underline;
}
h2 {
  font-family: Arial; 
  font-size: 18px;
  text-decoration: underline;
}
h3.info {
  font-family: Arial; 
  font-size: 16px;
  text-decoration: underline;
}
h3 {
  font-family: Arial; 
  font-size: 16px;
  text-decoration: underline;
}
/* Odstavce */
p.info {
  font-family: Arial; 
  font-size: 14px;
}
p {
  font-family: Arial; 
  font-size: 14px;
}
/* Odkazy */
a.info {
  font-family: Arial; 
  font-size: 14px;
}
a.small {
  font-family: Arial; 
  font-size: 12px;
}
/* Obecne formatovani textu */
.normal {
  font-family: Arial; 
  font-size: 12px;
}
.nounderline {
  text-decoration: none;
}
/* Tabulky */
table {
  border-collapse: collapse;
  min-width: 50%;
  margin-left: auto;
  margin-right: auto;
}
th {
  font-family: Arial; 
  font-size: 14px;
  font-weight: bold; 
  background-color: #cccccc; 
  padding: 10px;
  border-bottom: 1px solid;
}
td {
  font-family: Arial; 
  font-size: 12px; 
  padding: 10px;
  border-bottom: 1px solid;
}
tr:nth-child(even) {
  background-color: #e6e6e6; 
}
/* Prostredi zdrojoveho kodu */
code {
  font-family: monospace; 
  font-size: 14px; 
  background-color: #e6f2ff;
  padding: 2px; 
  border-radius: 2px;
}
pre {
  display: block;
  font-family: monospace;
  font-size: 14px; 
  white-space: pre;
  padding: 10px;
  background-color: #e6f2ff;
  border: 1px dashed #99ceff;
  border-radius: 10px;
} 
/* Ramec stranky s dokumentaci */
.frame {
  border: 1px dashed #cccccc;
  border-radius: 10px;
}
/* Grid */
.zahlavi { 
  grid-area: header; 
  display: flex;
  justify-content: space-between;  /* logo/form dělí prostor mezi sebou */
  align-items: center;             /* svislé centrování */
  background-color: #cccccc;
  border-radius: 10px;
  padding: 0.5em 1em;
}
.odkazy { 
  grid-area: links; 
  display: flex;
  justify-content: space-between;  /* logo/form dělí prostor mezi sebou */
  align-items: center;             /* svislé centrování */
  background-color: #e6e6e6;
  border-radius: 10px;
  padding: 0.5em 1em;
}
.infoPanel { 
  grid-area: menu; 
  background-color: #e6e6e6; 
  border-radius: 10px; 
  min-height: 1080px;
}
.hlavniPanel { 
  grid-area: main; 
  background-color: #ffffff; 
  border-radius: 10px;
}
.iconPanel { 
  grid-area: icon; 
  background-color: #e6e6e6; 
  border-radius: 10px;
}
.zapati { 
  grid-area: footer; 
  background-color: #cccccc; 
  border-radius: 10px;
}
.grid-container {
  display: grid;
  grid-template-columns: 30% 70%;
  grid-template-rows: auto;
  grid-template-areas:
    'header header'
    'links links'
    'menu main'
    'footer footer';
  gap: 10px;
  background-color: #f2f2f2;
  padding: 10px;
}
.grid-container > div {  
  padding: 10px 10px 10px 10px;
}
/* Vyctova prostredi */
ul.info ol.info {
  font-family: Arial; 
  font-size: 14px;
}
ul ol {
  font-family: Arial; 
  font-size: 14px;
}
li.info {
  font-family: Arial; 
  font-size: 14px;
}
li {
  font-family: Arial; 
  font-size: 14px;
}
/* Obrazky */
img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
}
/* Zadavaci pole */
input[type=text], input[type=password] {
  width: 200px;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
/* Tlacitka */
button.black {
  background-color: black;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: white 10px;
  cursor: pointer;
  width: 100px;
  display: inline-block;
}
button.navi {
  background-color: #e6f2ff;
  border: solid 1px;
  border-radius: 4px;
  border-color: #808080;
  width: 25px;
  height: 25px;
}
button:hover {
  opacity: 0.75;
} 
/* Add Zoom Animation */
.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
}
@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)} 
  to {-webkit-transform: scale(1)}
} 
@keyframes animatezoom {
  from {transform: scale(0)} 
  to {transform: scale(1)}
}
/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
  span.psw {
      display: block;
      float: none;
  }
  .cancelbtn {
      width: 100%;
  }
}
/* Accordion */
.accordion {
  background-color: #cccccc;
  color: #000000;
  cursor: pointer;
  padding: 15px;
  width: 100%;
  border: dashed 1px;
  border-radius: 5px;
  text-align: left;
  outline: none;
  font-size: 12px;
  transition: 0.4s;
  margin-bottom: 10px;
}

.active, .accordion:hover {
  background-color: #cceeff; 
}

.accpanel {
  padding: 0 10px;
  display: none;
  background-color: #f2f2f2;
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 10px;
}
video.center {
  width: 75%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.website-counter {
  float: left;
  font-family: Arial; 
  font-size: 14px;
}