@import url('https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
/*
Generic Styling, for Desktops/Laptops
*/
body{
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
}

h1,h2,h3,h4,h5,h6{
	font-family: 'Open Sans Condensed', sans-serif;
	font-weight:700;
}

table {
  width: 100%;
  border-collapse: collapse;
}
/* Zebra striping */
tr:nth-of-type(odd) {
  background: #eee;
}
th {
  background: #959595;
  color: white;
  font-weight: bold;
}
td, th {
  padding: 6px;
  border: 1px solid #ccc;
  text-align: left;
}

#calendar center a{
  margin-top:10px;
}

.container div>.btn-primary{
  margin-top:10px;
}

.book, .na {
    width:100%;
}

/*
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.
*/
@media screen and (max-width: 1024px)  {

	/* Force table to not be like tables anymore */
	table, thead, tbody, th, td, tr {
		display: block;
	}

  .book, .na {
      width:100%;
  }

	/* Hide table headers (but not display: none;, for accessibility) */
	th {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}

	tr { border: 1px solid #ccc; }

	td {
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee;
		padding-left: 50%;
	}

	.empty{display:none;}

	td:before {

		padding-right: 10px;
		white-space: nowrap;
	}


/*
Label the data
*/
td:nth-of-type(1):before {
    content: "Sonntag";
}
td:nth-of-type(2):before {
    content: "Montag";
}
td:nth-of-type(3):before {
    content: "Dienstag";
}
td:nth-of-type(4):before {
    content: "Mittwoch";
}
td:nth-of-type(5):before {
    content: "Donnerstag";
}
td:nth-of-type(6):before {
    content: "Freitag";
}
td:nth-of-type(7):before {
    content: "Samstag";
}


}

/* Smartphones (portrait and landscape) ----------- */



.today{
background:#F7E5CA;
}

.btn-primary{
  background-color: #FFA300;
  border-color: #c48c2d;
}

.btn-primary:hover{
  background-color: #c48c2d;
}
