button {
    border: none;
    background: none;
    cursor: pointer;
    margin: 0;
    padding: 0;
}


/*-------------BULLETT POINT STYLES-------------*/

ol li {
  margin-left:-18px;
	margin-bottom: 7px;
}

ol ol li {
  margin-left:-35px;
	margin-bottom: 7px;
}

ol ul li {
  margin-left:-35px;
	margin-bottom: 7px;
}

ul ol li {
  margin-left:-35px;
	margin-bottom: 7px;
}

ul li {
  margin-left:-20px;
	margin-bottom: 7px
}

ul ul li {
  margin-left:-35px;
	margin-bottom: 7px;
}

ul ul ul li {
  margin-left:-70px;
	margin-bottom: 7px;
  list-style:none;
}
ul ul ul li::before {
  content: '⤷ ';
}




/*-------------TABLE STYLES-------------*/

table {
	margin-left: auto;
  margin-right: auto;
	}

.tg  {border-collapse:collapse;border-spacing:0;}
.tg td{border-color:black;border-style:solid;border-width:1px;
  overflow:hidden;padding:10px 5px;word-break:normal;}
.tg th{border-color:black;border-style:solid;border-width:1px;
  font-weight:normal;overflow:hidden;padding:10px 5px;word-break:normal;}
.tg .tg-ti2t{color:#32cb00;text-align:left;vertical-align:top}
.tg .tg-1wig{font-weight:bold;text-align:left;vertical-align:top}
.tg .tg-36ox{border-color:inherit;color:#fe0000;text-align:left;vertical-align:top}
.tg .tg-viqs{color:#fe0000;text-align:left;vertical-align:top}
.tg .tg-0lax{text-align:left;vertical-align:top}
.tg .tg-2w5w{background-color:#ffffff;border-color:inherit;;font-weight:bold;
  text-align:left;vertical-align:top}
.tg .tg-0pky{border-color:inherit;text-align:left;vertical-align:top}
.tg .tg-tu1s{border-color:inherit;color:#32cb00;text-align:left;vertical-align:top}
.tg .tg-c76s{border-color:inherit;color:#fe0000;font-family:inherit;text-align:left;vertical-align:top}




/*-------------CARD AND FOOTER STYLES-------------*/

body {
    font-family: "Atkinson Hyperlegible", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: left;
    color: black;
    background-color: #F5F5F5;

}

.card {
    margin-left: 7%;
    margin-right: 7%;
    border-radius: 25px;
    border: 1px solid #999; display: block; padding: 20px;
    background-color: white;
}

.header{
    padding:5px;
    background-color: dodgerblue;
    color:white;
    text-align: center;
}

footer {
	text-align:left;
  width: fit-content;
  font-weight: bold;
  display: flex;
  padding-top: 10px;
}

img {
    max-width: none;
    max-height: none;
}




/*-------------HOVERABLE-------------*/

.hide {
  display: none;
}

.hoverable:hover + .hide {
  display: block;
}




/*-------------DROPDOWN-------------*/

 /* Dropdown Button */
.dropbtn {
  background-color: rgba(255,255,255,0.9);
  padding: 16px;
  font-size: 16px;
  border: 2px solid rgba(0, 0, 0, 0.05);
  position: fixed;
  border-radius: 15px;
  text-align: left;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    position: fixed;
    display: none;
    position: fixed;
    background-color: rgba(255,255,255,0.9);
    min-width: 160px;
    top: 74px;
    border-top: 0;
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropdown-content .bottomLink {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {min-width: 164px; border-bottom-left-radius: 0%; border-bottom-right-radius: 0%; border-bottom: 0;}






/*-------------COMMENTS-------------*/

.comment {
  border: 1px solid #999;
  padding: 3px;
  border-radius: 10px;
  font-weight: 400;
}
