/* Common styles */
body {
  font-family: "ptsans", "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.left {
  float: left;
}

.right {
  float: right;
}

.btn {
  outline: none;
  color: black;
  background-color: transparent;
  box-shadow: 0 0 0 0;
  margin-right: 3px;
}

.clearfix {
  margin: 15px;
}

.form {
  margin: auto;
}

.form input,
.form select,
.form textarea {
  border-radius: 5px;
  border: 1px solid #17a2b8;
  outline: none;
  background: none;
  padding: 5px;
  width: 100%;
}

/* App styles */
.title {
  text-align: center;
  margin: 10px;
}

.calendar-container {
  width: 98%;
  margin: auto;
}

.calendar-container table.calendar {
  width: 100%;
  font-size: 13px;
  border-collapse: collapse;
}

.calendar-container table.calendar tr,
.calendar-container table.calendar td {
  border: 1px solid black;
}

.calendar-container table.calendar th {
  padding: 10px;
  text-align: center;
  font-size: 18px;
}

.calendar-container table.calendar td {
  width: 200px;
  height: 150px;
  padding: 20px 0px 0px 5px; /* Remove top padding to allow the link to span the whole cell */
  position: relative;
}

.calendar-container table.calendar .date {
  font-size: 16px;
}

.calendar-container table.calendar ul {
  list-style: none;
  height: 100%;
  padding: 0px 0px 0px 0px;
  margin: 0; /* Remove default margin to allow the link to span the whole cell */
}

.calendar-container table.calendar ul a {
  color: black;
  text-decoration: none;
  background-color: darkseagreen;
  display: block; /* Make the link a block element to span the whole cell */
  padding: 5px;
  margin-bottom: 5px;
}

.calendar-container table.calendar ul a:hover {
  text-decoration: underline;
}