body {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  //background-color: #FFFCFF;
  background-color: lightblue;
}
button {
  width: 75px;
  cursor: pointer;
  box-shadow: 0px 0px 2px gray;
  border: none;
  outline: none;
  padding: 5px;
  border-radius: 5px;
  color: white;
}
#header {
  padding: 10px;
  color: #d36c6c;
  font-size: 26px;
  font-family: sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
} 
#header > div {
    display: flex;
    align-items: center;
    gap: 5px;
}
#header button {
  // background-color:#92a1d1;
  // background-color: #a52834;
  background-color: #d36c6c;
  font-size: 14px;
  padding: 5px 10px;
}
#container {
  width: 770px;
  margin: 0 auto;
}
#weekdays {
  width: 100%;
  display: flex;
  color: #247BA0;
}
#weekdays div {
  width: 100px;
  padding: 10px;
  box-sizing: border-box;
  margin: 5px;
}
#calendar {
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}
.day {
  width: 100px;
  padding: 10px;
  height: 100px;
  cursor: pointer;
  box-sizing: border-box;
  background-color: white;
  margin: 5px;
  box-shadow: 0px 0px 3px #CBD4C2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.day:hover {
  background-color: #e8faed;
}
.day + #currentDay {
/*  background-color:#e8f4fa; */
    background-color: #92a1d1;
}
.event {
  font-size: 10px;
  padding: 3px;
  background-color: #58bae4;
  color: white;
  border-radius: 5px;
  max-height: 55px;
  overflow: hidden;
}
.padding {
  cursor: default !important;
  background-color: #FFFCFF !important;
  box-shadow: none !important;
}
#newEventModal {
  display: none;
  z-index: 20;
  padding: 35px;
  background-color: #e8f4fa;
  box-shadow: 0px 0px 3px black;
  border-radius: 5px;
  width: 700px;  
  max-height: 80vh;
  overflow-y: auto;
  top: 60px;
  left:calc(50% - 350px);
  position: absolute;
  font-family: sans-serif;
}
#eventTitleInput.error {
  border: 2px solid red;
}
#closeButton {
  //background-color: #92a1d1;
  background-color: #d36c6c;
}
#eventText {
  font-size: 14px;
}
#modalBackDrop {
  display: none;
  top: 0px;
  left: 0px;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  position: absolute;
  background-color: rgba(0,0,0,0.8);
}