html {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.8em, 3.5vw, 1.75em);
  background-color:#333333;
  color: #000000;
}

h1 {
  color: #FFFFFF;
  margin:5px 0;
  text-align:center;
  font-size: clamp(1em, 5vw, 1.75em);
  text-shadow: 10px 10px 20px black;
} 
h2 {
  color:#000000;
  margin:5px 0;
  font-weight: bold;
  text-align:left;
  font-size: clamp(1em, 2vw, 1.75em);
} 
h2.center {
  color:#000000;
  margin:5px 0;
  font-weight: bold;
  text-align:center;
  font-size: clamp(1em, 2vw, 1.75em);
} 

a { text-decoration: none; }

img {
  vertical-align: middle;
}
.plan_icon {
	height: 30px;
}
.today_icon {

}

button {
	height: 50px;
	width: 100%;
	font-size: clamp(1em, 2vw, 1.75em);
	font-weight: bold;
}
button.admbtn {
	font-size: 0.8em;
	height:34px;
	width:50px;
}

table {
  margin-left:auto;
  margin-right:auto;
  border-spacing:0;
  padding-left: 10px;
  padding-right: 10px;
  color:#FFFFFF;
  width: 90vw;
  max-width: 1000px;
}
table.maintable {
  margin-left:auto;
  margin-right:auto;
  margin-bottom: 10px;
  border-spacing:0;
  border-collapse: separate;
  color:#000000;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 10px;
  padding-bottom: 0px;
  width: 100%;
}
.mon_l {
	padding-left: 10px;
	background-color:#FFFFFF;
	border-top-left-radius: 10px; 
	border-top-right-radius: 10px; 
}
.mon_r{
	background-color:#333333;
}
.marked {
	background-color:#81BEF7;
}
.markedclean {
	background-color:#F8E0E0;
}
.unmarked{
	background-color:#FFFFFF;
}

table.infotable {
  margin-left:auto;
  margin-right:auto;
  margin-bottom: 10px;
  border-spacing:0;
  background-color:#333333;
  color:#FFFFFF;
  padding: 5px;
  width: 100%;
  border: solid 1px #FFFFFF;
}
table.infotoday {
  border-radius: 10px;
  margin-left:auto;
  margin-right:auto;
  margin-bottom: 10px;
  border-spacing:0;
  background-color:#81BEF7;
  color:#000000;
  padding: 5px;
  width: 100%;
  border: solid 1px #81BEF7;
}
table.whitetable {
  border-radius: 10px;
  margin-left:auto;
  margin-right:auto;
  border-spacing:0;
  background-color:#FFFFFF;
  color:#000000;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  min-width: 230px;
  max-width: 600px;
  width: 90vw;
  box-shadow: 10px 10px 20px 1px black;
}
table.subtable {
  margin-bottom: 5px;
  border-spacing:0;
  background-color:#DDDDDD;
  color:#000000;
  padding: 5px;
  width: 100%;
  border-color:#666666;
  border: none;
}
td.task {
	vertical-align: top;
	text-align: left;
	font-size: 0.9em;
}

table.admintab {
  font-size: 0.8em;
  width: 100%;
}
td.admintab {
  font-size: 0.8em;
}
tr.actline:hover td {
    background-color: #FF0000;
}

tr {
	height: 40px;
}
tr.hidden {
	display: none;
}
tr.unhidden {
	
}

td.pdgbig {
	font-size:3em;
}

div[class*=container] {
 
  text-align: center;
  width: 100%;
  height: 33%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #333; 
}

.btn {
  position: relative;
  color: white;
  max-width: 400px;
  width: 90%;
  height: 64px;
  line-height: 64px;
  transition: all 0.3s;
  span {
    transition: all 0.3s;
    tranform: scale(1, 1);
  }
}
.btn::before, .btn::after {
  content: '';
  border-radius: 10px;
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-shadow: 10px 10px 20px 1px black;
}

.btn-one::before {
  left: 4px;
  z-index: 1;
  opacity: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: scale(0.1, 1);
}

.btn-one:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}

.btn-one::after {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-one:hover::after {
  transform: scale(1, .1);
  opacity: 0;
}

