.calBox > *, .addInputs > * {
  display: block;
}
.calBox > label, .addInputs > label {
  font-weight: bold;
}
.calBox > input, .addInputs > input {
  margin-top: .5rem;
}
.messageBox {
  margin-top: .5rem;
  font-size: 24px;
}
.mylist {
  list-style: none;
}
.mylist li {
  margin: .25rem; 
  display: inline-block;
}
#Good {
  color: green;
}
#Okay {
  color: yellow;
}
#Bad {
  color: red;
}
table { 
  /* background: grey; */
}
table td {
  padding: .25rem;
}
button {
  background-color: green; 
  color: white;
  white-space: normal;
  padding: 4px 12px;
  margin-bottom: 0.25rem;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid #ccc;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);
  border-bottom-color: #b3b3b3;
}
button.remove, button.hidden {
  background: gray;
}
button.Udemy {
  background: #A435F0;
}
button.UdemyBrand {
  background: #5022C3;
}
.swatch {
  border: 1px solid black;
  outline: solid white;
  height: 0.5rem;
  width: 0.5rem;
  display: inline-block;
  margin: 0rem 0.25rem;
  border-radius: 50%;
}
.sr-only {
    border: 0;
    clip: rect(0,0,0,0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
td.invert {
  filter: invert();
}
.hideInverted td.invert {
  visibility: hidden;
}

/* start tooltip */
td .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
}
td.invert .tooltiptext {
    filter: invert();
}
td:hover .tooltiptext, td:focus .tooltiptext {
  visibility: visible;
}
/* end tooltip */