ul {
  list-style-type: none;
}

body {
  font-family: Verdana, sans-serif;
}

/* Month header */
.month {
  padding: 40px 25px;
  width: auto;
  background: #1abc9c;
  text-align: center;
  /* border-radius: 5px; */
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

/* Month list */
.month ul {
  margin: 20px;
  padding: 0;
}

.month ul li {
  color: white;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* Previous button inside month header */
.month .prev {
  float: left;
  padding-top: 10px;
}

/* Next button */
.month .next {
  float: right;
  padding-top: 10px;
}

/* Weekdays (Mon-Sun) */
.weekdays {
  
  margin: 0;
  padding: 10px 0;
  background-color: #ddd;
  /* border: 2px solid black; */
}

.weekdays li {
  
  display: inline-block;
  width: 13.6%;
  color: #666;
  text-align: center;
}

/* Days (1-31) */
.days {
  padding: 10px 0;
  background: #eee;
  margin: 0;
  /* border: 2px solid rgb(255, 0, 0); */
}

.days li {
  /* border: 2px solid red; */
  list-style-type: none;
  display: inline-block;
  width: 13.6%;
  text-align: center;
  margin-bottom: 5px;
  font-size: 12px;
  color: #777;
  padding-bottom:  25px; 
}

/* Highlight the "current" day */
.days li .active {
  padding: 5px;
  border-radius: 2px;
  /* background: #1abc9c; */
  background: #0036fa;
  color: white !important
}


