button {
  width: auto;
  height: auto;
  cursor: pointer;
  box-shadow: 0px 0px 2px gray;
  border: none;
  outline: none;
  padding: .5rem .75rem;
  border-radius: 5px;
  color: white;
}

#calendar-header {
  padding: 10px;
  color: #111;
  font-size: 20px;
  font-family: circe-bold;
  display: flex;
  justify-content: space-between;
}
#calendar-header button {
  background-color: #ff9d00;
  transition: all .2s ease-in-out;
}

#calendar-header button:hover{
  background-color: #FFAC28;
  transition: all .2s ease-in-out;
}

#weekdays {
  width: 100%;
  display: flex;
  justify-content:center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  color: #111;
  font-family: circe-bold;
  font-size:12px;
  font-weight: bold;
}

#weekdays div {
  width: 2.4rem;
  margin:0.375rem;
}

#calendar {
  /* width: 380px; */
  width:22.05rem;
  display: flex;
  flex-wrap: wrap;
}
.day {
  width: 2.4rem;
  height: 2.4rem;
  cursor: pointer;
  box-sizing: border-box;
  background-color: white;
  margin: 0.375rem;
  box-shadow: 0px 0px 3px #CBD4C2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  transition: all .2s ease-in-out;
}
.day:hover {
  background-color: #ffc362;
  transition: all .2s ease-in-out;
}

#calendar-container{
  width: auto;
}

#currentDay {
  background-color: #FFAC28;
}
.padding {
  cursor: default !important;
  background-color: #FFFCFF !important;
  box-shadow: none !important;
}