body {
    margin: 0;
    padding: 0;
}

main {
    justify-content: space-between;
    padding: 20px;
}

#summary {
    padding: 10px;
    border-bottom:1px solid #333;
}

.container h2 {
    display:inline-block;
}

.container section {
    padding: 20px;
}

.container ul {
    list-style: none;
    padding: 0;
}

.container li {
    margin-bottom: 10px;
}

.tzNote {
    float:right;
}

.carousel-indicators [data-bs-target] {
    background-color:#333!important;   
}

.carousel-control-next, .carousel-control-prev { 
    color:#333!important;
    width:5%!important ;
    opacity:1!important;
}

.carousel-inner {
    padding-bottom: 30px;
}

/*Tooltip styling*/
.tt {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.tt .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tt .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tt:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.tt .tooltiptext {
    visibility: hidden;
    position: absolute;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip-bottom {
    top: 135%;
    left: 50%;
    margin-left: -60px;
}

.tooltip-right {
    top: -5px;
    left: 125%;
}
.tooltip-top {
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
}

.tooltip-left {
    top: -5px;
    bottom: auto;
    right: 128%;
}