body {
  padding-left:30px;
  background-color:#ddd;
}



table {
  border-collapse: separate;
  border-spacing: 0.2em;
}

/*th, td {
  padding: .2em .5em;
  border-radius: .1em;
}*/

thead th {
  background-color: #ffebe6;
  color: #c32e04;
}

td {
  text-align: center;
/*  box-shadow: outset 1px 3px 5px -3px rgba(0,0,0,.5);       */
  border-radius: 3px;
}

/* Iframe-Formatierung */
.container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 90%;
  height: 90%;
}

.tdzeilenkopf {
  text-align: left;
/*  box-shadow: outset 1px 3px 5px -3px rgba(0,0,0,.5); */
}

td:empty{
  box-shadow: none;
}

#datum {
text-align:middle;
font-size: 14px;
width:50px
}

.reservbelegt {
  width:15px;
  height:15px;
  background-color:#ff0000;
  font-weight:bold;
  text-align:middle;
}

.reservfrei {
  width:15px;
  height:15px;
  background-color:green;
  font-weight:bold;
  text-align:middle;
}

.info {
  width:15px;
  height:15px;
  background-color:#BB1115;
  color:#fff;
  font-weight:bold;
  text-align:middle;
  text-decoration:none;
}

p {
  color:#000;
  font-size: 14px;
  text-align: left;
}

td a {
  display:block;
  width:100%;
  height:100%;
  text-decoration:none;
  margin:0px;
}

/*Tooltip-fORMATIERUNG */
.tooltip
  {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
    text-decoration:none;
    cursor:hand;
}

.tooltip .tooltiptext
  {
    visibility: hidden;
    width: 250px;
    background-color: #fff;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 100%;
    margin-left: -240px;
    text-decoration:none;

    /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
    opacity: 0;
    transition: opacity 2s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
  text-decoration:none;
}


