.simple-calendar table {
  -webkit-border-horizontal-spacing: 0px;
  -webkit-border-vertical-spacing: 0px;
  background-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
  max-width: 100%;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.simple-calendar tr {
  border-collapse: collapse;
}

/* Adding border-radius to the table */
.simple-calendar tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
.simple-calendar tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
  border-right: 1px solid #cbd5e0;
}
.simple-calendar tr:last-child td {
  border-bottom: 1px solid #cbd5e0;
}
.simple-calendar tr:first-child th:first-child {
  border-top-left-radius: 10px;
}
.simple-calendar tr:first-child th:last-child {
  border-top-right-radius: 10px;
  border-right: 1px solid #cbd5e0;
}
.simple-calendar tr td:last-child {
  border-right: 1px solid #cbd5e0;
}

.simple-calendar th {
  border-left: 1px solid #cbd5e0;
  border-top: 1px solid #cbd5e0;
  box-sizing: border-box;
  text-align: left;
}
.simple-calendar td {
  padding: 0;
  vertical-align: top;
  width: 14%;
  border-top-color: #cbd5e0;
  border-top-style: solid;
  border-top-width: 1px;
  border-left-color: #cbd5e0;
  border-left-style: solid;
  border-left-width: 1px;
}
.simple-calendar .day {
  height: 130px;
}
.simple-calendar .today {
  background: #edf2f7;
}

.simple-calendar .active-day {
  background: #edf2f7;
}

.simple-calendar .prev-month {
  color: #cbd5e0;
}
.simple-calendar .next-month {
  color: #cbd5e0;
}
.simple-calendar .calendar-heading > a {
  color: black;
}

.dot-calendar table {
  -webkit-border-horizontal-spacing: 0px;
  -webkit-border-vertical-spacing: 0px;
  background-color: rgba(0, 0, 0, 0);
  table-layout: fixed;
  box-sizing: border-box;
  max-width: 100%;
  width: 100%;
}

.dot-calendar tr {
  border-collapse: collapse;
}

.dot-calendar th {
  box-sizing: border-box;
  text-align: center;
}
.dot-calendar td {
  height: 40px;
  min-width: 40px;
  vertical-align: center;
  width: 40px;
  text-align: center;
  background: "blue";
  position: relative;
}

.next-month .active-day {
  /* Adding important so grayed days don't get assigned an active class */
  background: unset !important;
  color: #cbd5e0 !important;
}

.prev-month .active-day {
  /* Adding important so grayed days don't get assigned an active class */
  background: unset !important;
  color: #cbd5e0 !important;
}

.dot-calendar .today .today-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(237, 242, 247, 1);
  color: black;
}

.dot-calendar .today .contract-today-wrapper {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(237, 242, 247, 1);
  color: black;
}

.dot-calendar .prev-month {
  color: #cbd5e0;
}
.dot-calendar .next-month {
  color: #cbd5e0;
}
.dot-calendar .calendar-heading > a {
  color: black;
}

.dot-calendar .active {
  background: rgba(237, 242, 247, 1);
}
