/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

.streamed_true{
  background-color: green;
}
.streamed_false{
  background-color: red;
}

body{
  background-image: url('../img/pink_rice.png');
  background-repeat: repeat;
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color:#73848d;
  font-size: 18px;
}
.main{
  width: 768px;
  margin: auto;
  margin-top: 20px;
  padding: 25px;
  background-color: #f3fbff;
  border-radius: 10px;
  border-left: 7px solid #adcee0;
  border-right: 7px solid #adcee0;
  border-top: 1px solid #adcee0;
  border-bottom: 1px solid #adcee0;
}

.table-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

.table-container > table {
  width: 100%;
  border-collapse: collapse;
}

.table-container > table th,
.table-container > table td {
  border: 1px solid #ddd;
}
.table-container > table td {
  height: 15px;
  width: 15px;
}
.legend{
  font-size: 10px;
  text-transform: uppercase;
  vertical-align: center;
  dominant-baseline: middle;
}
.month-data{
  line-height: 1;
}
h1{
  text-align: center;
  font-size: 3em;
  color: #eecfec;
  text-shadow: 2px 2px 0px #cc94bb;
  font-family: "Titan One", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-top: 0;
}
h4{
  font-size: 1em;
  color: #adcee0;
  font-weight: 800;
  text-transform: uppercase;
}
.main p{
  margin-top: 10px;
}
.main em{
  font-size: 1.2em;
  color: #cc94bb;
  text-shadow: 2px 2px 0px #eecfec;
  font-weight: 800;
  text-transform: uppercase;
  font-style: normal;
}
footer{
  text-transform:uppercase;
  font-size: .6em;
  text-align: right;
  margin-top: 10px;
  margin-bottom: -15px;
}
footer em{
  font-size: 1.2em;
  color: #eecfec;
  text-shadow: 2px 2px 0px #cc94bb;
  font-weight: 800;
  text-transform: lowercase;
  font-style: normal;
}
[aria-label] {
  position: relative;
}
  
[aria-label]:after {
content: attr(aria-label);
display: none;
position: absolute;
top: 110%;
left: 10px;
z-index: 5000;
pointer-events: none;
padding: 8px 10px;
line-height: 15px;
white-space: nowrap;
text-decoration: none;
text-indent: 0;
overflow: visible;
font-size: .9em;
font-weight: normal;
color: #fff;
text-shadow: 1px 0 1px #888;
background-color: #411729;
border-left: 6px solid #d37092;
border-radius: 2px;
box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.5);
}
[aria-label]:hover:after, [aria-label]:focus:after {
  display: block;
}