.infotile{  display:inline-block;
            box-sizing: border-box;
            background-color:#eee; 
            border: 3px solid #ce0d00;
            height:auto;
            width:400px;
            padding:12px;
            margin:12px;
            vertical-align: top;
}

.infotilelink{display:inline-block;}
.infotiledetails{display:inline-block;}
.infotiletext{width:280px;word-wrap:break-word;margin:0;}

.infotile img{ vertical-align: text-top;}

.vhbutton {
    background-color: #181850;    
    color: white;
    border: none;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

.kalender-tabel{
    font-family: "Source Sans Pro";
}


.gewijzigd{
    background-color : rgb(255,165,0);
    background-color : rgba(255,165,0,0.3);
}

.uitgesteld{
   text-decoration-line: line-through; 
}

/*
styling for pattern p_collapsible
*/

.collapsible{
    margin: 10px;
}
.collapsible-header{
    display: flex;
    align-items: center;
    padding:5px;
    background-color: #181850;    
    color: white;
    font-weight: bolder;
    font-size : 16px;
    cursor:pointer;
    border-radius : 8px;
}
.collapsible-body{
    padding:5px;
}
.collapsible--collapsed .collapsible-body{
    display: none;
}
.collapsible .fa-caret-square-down{
    display: none;
}
.collapsible--collapsed .fa-caret-square-down{
    display: inline-block;
}
.collapsible .fa-caret-square-up{
    display: inline-block;
}
.collapsible--collapsed .fa-caret-square-up{
    display: none;
}

.collapsible .fa{
    font-size : 32px;
    color : rgb(206,13,0);
    color : rgba(206, 13, 0, 0.9);
    margin-right:40px;
}


.gameresult {
  position: relative;
  display: inline-block;
  border-radius: 12px;
}

.gameresult .tooltiptext {
  visibility: hidden;
  width: 240px;
  background-color: inherit;
  text-align: center;
  border-radius: 12px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 50%;
  margin-left: -120px;
  font-weight: normal;
}

.gameresult:hover .tooltiptext {
  visibility: visible;
}

.gameWon{
    background-color:lightgreen;
}
.gameLost{
    background-color:lightpink;
}
.gameUndecided{
    background-color:lightblue;
}
.gameDerby{
    background-color:lightblue;
}

/*
styling for responsive table with game details
*/
table {
  width: 100%;
  table-layout: fixed;
}

table tr {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: .35em;
}


@media screen and (max-width: 800px) {
  table {
    border: 0;
  }


  table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }
  
  table td {
    border-bottom: 1px solid #ddd;
    display: block;
  }
  
  table td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  table td:last-child {
    border-bottom: 0;
  }
}

  
  
  