.tooltip-calendar {
  position: relative;
  display: inline-block;
  opacity: 1;
  width: 100%;
  height: 100px;
}

.tooltip-calendar .tooltiptext {
  visibility: hidden;
  /* width: 150%; */
  background-color: white;
  /* color: #fff; */
  /* text-align: center; */
  border: 2px solid black;
  padding: 5px 0;
  cursor: pointer;




  /* Position the tooltip */
  position: absolute;
  z-index: 10;
}

.tooltiptext td {
  white-space: nowrap;
}

p {
  color: Black;
}

.inner-tooltip-text {
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 0px;
  margin-bottom: 0px;
  border-bottom: 0px;
  font-size: 13px;
}

.tooltip-calendar:hover .tooltiptext {
  visibility: visible;
}

.head-menu {
  width: 100%;
  background-color: #3f6c83;
}

.menu-button {
  background-color: #3f6c83;
  border: 2px;
  border-style: solid;
  border-color: #3f6c83;
  display: inline-block;
  width: 100px;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
  vertical-align: middle;
  /* background-image: radial-gradient(azure, cyan, cadetblue); */
  /* background-image: linear-gradient(-90deg, darkblue, blue); */
}

.menu-button:hover {
  border-color: white;
}

a {
  text-decoration: none;
  color: white;
}

.calendar-menu {
  width: 100%;
  background-color: #0085a3;
}

.calendar-menu-date {
  color: white;
  font-size: 50px;
}

.change_month-button {
  height: 120px;
  width: 120px;
  font-size: 50px;
  color: white;
  background-color: #0085a3;
  border-color: #0085a3;
}

.change_month-button:hover {
  border-color: white;
}

.request-logs {
  padding: 5px;
  width: 100%;
  background-color: #0085a3;
}

.request-logs div {
  color: white;
}

th {
  background-color: rgb(211, 211, 211) !important;
}



/* Popup container */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* The actual popup (appears on top) */
.popup .popuptext {
  visibility: hidden;
  width: 200;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  top: -17px;
  left: 50%;
  margin-left: -80px;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}