body {
  padding: 0;
  margin: 0;
  position: relative;
}

* {
  box-sizing: border-box;
  text-decoration: none;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  text-align: left;
}

.container {
  position: relative;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  padding-top: 5%;
  padding-bottom: 5%;
  background-color: #090041;
}

.cal-container {
  width: 600px;
  height: 635px;
  background-color: #e7e7e7;
  margin-left: 30%;
  border: none;
  border-radius: 5px;
  padding: 2px;
  box-sizing: border-box;
}

.cal-header {
  width: 100%;
  height: 15%;
  background-color: #f7f7f7;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  margin-bottom: 1px;
  color: black;
}

#year-title {
  margin: 0;
  padding-top: 6%;
  padding-left: 2%;
}

.cal-body {
  width: 100%;
  height: 64%;
  background-color: white;
}

.cal-footer {
  margin-top: 2px;
  width: 100%;
  height: 20%;
  background-color: #f7f7f7;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

table {
  width: 100%;
  height: 100%;
}

table,
th,
td {
  color: #595f66;
  background-color: #ffffff;
  border: 1.5px solid #e7e7e7;
  border-collapse: collapse;
}

th,
td {
  background-color: #ffffff;
  max-height: 57.9px;
  height: 14.2%;
  /* height:57.7px; */
  width: 14.2%;
  padding: 15px;
}

td:hover {
  cursor: pointer;
  color: white;
  background-color: #1988ff;
}

th {
  border-bottom: 2px solid #e7e7e7;
  color: black;
}

.cal-ftr-btns {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 4%;
}

.ftr-btn {
  cursor: pointer;
  width: 50%;
  text-align: center;
  color: #1988ff;
  font-size: 17px;
  height: 40px;
  background-color: white;
  border: 0.111rem solid #1988ff;
  border-radius: 5px;
}

.ftr-btn:hover {
  color: white;
  background-color: #1988ff;
  border: 0.111rem solid #fff;
}

.cal-ftr-selects {
  margin-top: 4%;
  display: flex;
}

.cal-selectDrop {
  color: #595f66;
  width: 35%;
  height: 40px;
  border: 2px solid #e8ebee;
  border-radius: 5px;
  font-size: 18px;
  padding-left: 2%;

}

.cal-selectLabel {
  color: #595f66;
  padding: 7px;
  padding-left: 4%;
  width: 20%;
  height: 40px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
}

.current-date {
  color: white;
  background-color: #034d9b;
  box-shadow: 1px 1.5px 1, 5px #888888;
}

.danger {
  color: red;
}