.month {
    padding: 30px 10px;
    background: #00897b;
    text-align: center;
}
  
.month ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
  
.month ul li {
    color: white;
    text-transform: uppercase;
}
.month ul li a {
    color: white;
    text-transform: uppercase;
    text-decoration: none;
}
  
.month .prev {
    float: left;
    padding-top: 10px;
}
  
.month .next {
    float: right;
    padding-top: 10px;
}
  
.weekdays {
    margin: 0;
    padding: 10px 0;
    background-color: #ddd;
}
  
 .weekdays li {
    display: inline-block;
    width: 12.6%;
    color: #666;
    text-align: center;
}
  
.days {
    padding: 10px 0;
    background: #eee;
    margin: 0;
}
    
.days li {
    list-style-type: none;
    display: inline-block;
    width: 12.6%;
    text-align: center;
    margin-bottom: 5px;
    font-size:12px;
    color: #777;
}

.Holiday {
    color:#d00 !important;
    font-weight:900 !important;
}

.days .active {
    background: #4ebaaa;
    color: white !important
}
.days .Holidayactive {
    background: #4ebaaa;
    color: #d00 !important;
    font-weight:900 !important;
}
.Sunday {
    font-weight: 800;
}
.Saturday {
    font-weight:800;
}

  /* Add media queries for smaller screens */
  @media screen and (max-width:720px) {
    .weekdays li, .days li {width: 13.1%;}
  }
  
  @media screen and (max-width: 420px) {
    .weekdays li, .days li {width: 12.5%;}
  }
  
  @media screen and (max-width: 290px) {
    .weekdays li, .days li {width: 12.2%;}
  }