﻿/* CSS Document */
html {
  /* This property makes the html

            page to scroll smoothly */
  /* If you want to directly move to the

            section without scrolling, remove

            this scroll-behavior property*/
  scroll-behavior: smooth;
}
button {
  display: inline-block;
  background-color: grey;
  border-radius: 10px;
  border: 4px double #cccccc;
  color: #eeeeee;
  text-align: center;
  font-size: 28px;
  padding: 20px;
  width: auto;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
  text-decoration: none;
}
button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}
button:hover {
  background-color: darkgray;
}
button:hover span {
  padding-right: 25px;
}
button:hover span:after {
  opacity: 2;
  right: 0;
}
h1 {
  color: dimgray;
  text-align: center;
  width: auto;
  width: 100%;
}
h2 {
  color: white;
  background-color: grey;
  text-align: center;
  font-size: 25px;
  width: auto;
  width: 100%;
}
h3 {
  color: white;
  background-color: grey;
  text-align: center;
  font-size: 18px;
  width: auto;
  width: 100%;
}
.p-colored {
  color: white;
  background-color: grey;
  padding: 5px 5px;
  font-size: 18px;
  width: auto;
  width: 100%;
}
.p-white {
  color: grey;
  background-color: white;
  padding: 5px;
  font-size: 18px;
  width: auto;
  width: 100%;
}
.task {
  font-size: 20px;
  padding: 0 5px 0 5px;
  margin: 0 5px 0 5px;
}
.task-red {
  color: red;
}
.task-blue {
  color: blue;
}
.task-orange {
  color: orange;
}
.task-strike {
  text-decoration: line-through;
}
.button-int {
  display: block;
  background-color: grey;
  border-radius: 10px;
  border: 4px double #cccccc;
  color: #eeeeee;
  text-align: center;
  font-size: 25px;
  padding: 20px;
  transition: all 0.5s;
  cursor: pointer;
  max-width: 500px;
  margin: auto;
  margin-bottom: 15px;
  text-decoration: none;
}
.button-int a {
  color: #eeeeee;
  text-decoration: none;
}
.button-int a:hover {
  color: dimgrey;
  text-decoration: none;
}
.button-month {
  display: inline-block;
  background-color: grey;
  border-radius: 10px;
  border: 4px double #cccccc;
  color: #eeeeee;
  text-align: center;
  font-size: 12px;
  padding: 6px;
  width: auto;
  transition: all 0.5s;
  cursor: pointer;
  margin: 4px;
  text-decoration: none;
}
.button-month-big {
  display: inline-block;
  background-color: grey;
  border-radius: 10px;
  border: 4px double #cccccc;
  color: #eeeeee;
  text-align: center;
  font-size: 40px;
  padding: 20px;
  width: auto;
  transition: all 0.5s;
  cursor: pointer;
  margin: 4px;
  text-decoration: none;
}
.main-header {
  display: inline;
  text-align: center;
  position: sticky;
  min-height: 14px;
  background-color: red;
  color: white;
  font-size: 14px;
  font-weight: bolder;
  width: 100%;
}
.td-select {
  background-color: lightgoldenrodyellow;
}
.td-select2 {
  background-color: springgreen;
}
.td-select3 {
  background-color: cornflowerblue;
}
.td-js-loaded .td-scroll-up {
  display: block !important
}

.strong {
  font-weight: bolder;
}
.mainContent {
  padding: 10;
}
.navig {
  margin: 0;
  padding: 50 0 0 0;
  overflow: hidden;
  min-height: 100px;
  text-align: center;
  background-color: lightgrey;
  color: grey;
  font-size: 60px;
  width: 100%;
}
/*navbar	*/
body {
  min-height: 220vh;
  margin: 0;
}
/*header*/
header {
  display: inline;
  text-align: center;
  padding: 5px;
  /*  overflow: hidden;*/
  min-height: 14px;
  background-color: white;
  color: grey;
  font-size: 14px;
  width: 100%;
}
nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  min-height: 50px;
  background-color: grey;
  color: white;
  font-size: 22px;
}
footer {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  min-height: 14px;
  background-color: whitesmoke;
  color: grey;
  font-size: 14px;
}
/* Trick */
body {
  display: flex;
  flex-direction: column;
}
.footer-harmonogram {
	margin-top: auto;
}

footer {
  margin-top: auto;
}
ul {
  list-style-type: none;
  margin: 0 10;
  padding: 0 20;
  overflow: hidden;
  font-size: 22px;
}
li {
  /*  float: left;*/
}
li a {
  display: inline;
  list-style-type: none;
  color: white;
  padding: 15px 15px;
  text-decoration: none;
  float: left;
}
/* Change the link color to #111 (black) on hover */
li a:hover {
  background-color: dimgray;
}
.buttons {
  text-align: center;
}
.rectangle-yellow-aktualny {
  background-color: yellow;
  height: 20px;
  width: 20px;
}
.rectangle-green-plan {
  background-color: springgreen;
  height: 20px;
  width: 20px;
}
.rectangle-orange-prazdniny {
  background-color: orange;
  height: 20px;
  width: 20px;
}
.rectangle-red-sviatok {
  background-color: red;
  height: 20px;
  width: 20px;
}
.rectangle-blue-plan {
  background-color: blue;
  height: 20px;
  width: 20px;
}
#myHeader {
  text-align: center;
  padding: 5px;
  min-height: 14px;
  background-color: orangered;
  color: white;
  font-size: 14px;
  width: 100%;
}
/* The sticky class is added to the header with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%
}


/* Table styles.css */

table {
  text-align: left;
  position: relative;
  border-collapse: collapse; 
}
th, td {
  padding: 2px;
}
tr.red th {
  background: grey;
  color: white;
}
tr.green th {
  background: green;
  color: white;
}
tr.purple th {
  background: purple;
  color: white;
}
th {
  background: grey;
  color: white;
  position: sticky;
  top: 125px; /* Don't forget this, required for the stickiness */
  box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.4);
}
