body {
    font-family: Tahoma;
}

.dateheader{
    text-align: center;
}

span {
    display: inline-block;
    /* float:left;  remove */
}

.btn {
  background-color: transparent; /* Blue background */
  border: none; /* Remove borders */
  color: black; /* White text */
  padding: 0; /* Some padding */
  font-size: 35px; /* Set a font size */
  width:40px;
  cursor: pointer; /* Mouse pointer on hover */
}

#calendar {
    width: 100%;    
}

#calendar a {
/*    color: #8e352e; */
    color: #485257;
    text-decoration: none;
}

#calendar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

#calendar li {
    display: block;
    float: left;
    width:14.338%;
    box-sizing:border-box;
    padding: 5px;
    border: 1px solid #ccc;
    margin-right: -1px;
    margin-bottom: -1px;
    border-color: black;
}

#calendar ul.weekdays {
    height: 40px;
    background: #96a3a9;
}

#calendar ul.weekdays li {
    text-align: center;
    text-transform: uppercase;
    line-height: 20px;
    border: none !important;
    padding: 10px 6px;
    color: #fff;
    font-size: 13px;
}

#calendar .days li {
    height: 15em;
}
/*
#calendar .event div:hover {
    background: #d3d3d3;
}

#calendar .days li:hover {
    background: #d3d3d3;
}
*/
#calendar .date {
    display: inline-block;
    text-align: center;
    margin-bottom: 5px;
    padding: 4px;
    background: #333;
    color: #fff;
    min-width:1.5em;
    width: auto;
    border-radius: 50%;
    float: right;
}

#calendar .date.full{
    display:none;
}

#calendar .event {
    clear: both;
    display: block;
    font-size: 13px;
    border-radius: 4px;
    padding: 5px;
    margin-bottom: 5px;
    line-height: 14px;
    background: #e4f2f2;
    border: 1px solid #b5dbdc;
    color: #009aaf;
    text-decoration: none;
}

#calendar .event-desc {
    color: #666;
    margin: 3px 0 7px 0;
    text-decoration: none;  
}

#calendar .other-month {
    background: #485257;
    color: #666;
}

/* ============================
                Mobile Responsiveness
   ============================*/


@media(max-width: 768px) {

    #calendar .weekdays, #calendar .other-month {
        display: none;
    }

    #calendar li {
        height: auto !important;
        border: 1px solid #ededed;
        width: 100%;
        padding: 10px;
        margin-bottom: -1px;
        border-color: black;
    }

    #calendar .date {
        float: none;
        display: none;
    }
    #calendar .date.full {
        float: none;
        display: inline-block;
    }
}