body {
  margin: 0;
  touch-action: manipulation;
  overflow-x: hidden;
  overflow-wrap: break-word;
  counter-reset: top-play-counter;
}
b {
  font-weight: bold;
}
* {
  box-sizing: border-box;
  font-family: sans-serif;
}
a, .blue {
  color: #0000ff;
}
a, .underline {
  text-decoration: underline;
}
#last-updated {
  display: inline-block;
  box-sizing: border-box;
  flex-shrink: 0;
  flex-grow: 1;
  margin-top: auto;
  margin-bottom: auto;
  width: 100px;
  font-size:1rem;
  text-align: center;
  line-height: 1.1rem;
}
#back {
  text-decoration: none;
  display: inline-block;
  box-sizing: border-box;
  flex-shrink: 0;
  flex-grow: 1;
  width: 50px;
  height: 50px;
  background: white;
  border: 2px solid black;
  border-radius: 50%;
  line-height: 46px;
  text-align: center;
  font-size: 25px;
  color: #ff66ab;
  text-shadow: 0 2px 2px black;
  transition-duration: 0.3s;
}
#back:hover {
  color: white;
  background: #ac396d;
  border-color: #ff66ab;
  font-size: 35px;
  transform: scale(-1, 1) rotate(360deg);
}
#recent-thing {
  width: 600px;
}
.backwards {
  transform: scale(-1, 1);
}
#header {
  display: flex;
  height: 60px;
  background: #ac396d;
  padding: 5px 5px;
  line-height: 20px;
}
#header > *:not(:last-child) {
  margin-right: 20px;
}
#header-content {
  display: flex;
  align-items: center;
  flex-direction: row;
}

#header-content > *:not(:last-child) {
  margin-right: 20px;
}
#header-content > a {
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  padding-top: 20px;
  padding-bottom: 20px;
  color: black;
  transition: 0.3s;
}
#header-content > a:hover {
  color: #eeeeee;
}
#content>div>ul {
  display: block;
}
table, th, td {
  border: 1px solid black;
}
#header-extra {
  display: flex;
  align-items: right;
  flex-direction: row-reverse;
  width: 100%;
}
.secret {
  opacity: 0.015;
}
/*Maybe create separate Home css file for below...?*/
#info-panel {
  float: right;
  border: 1px solid black;
  padding: 1px 1px;
  overflow-wrap: normal;
  width: 15%/*154px*/;
}
button {
  background-color: #eeeeee;
}
ul {
  display: inline-block;
}
.mod.selected {
  background-color: yellow!important;
}
.done {
  opacity: 0.5;
}

#playercard {
  width: 30%;
  /*height: 5em;*/
}

div[banned] {
  color: #700000;
}
#topPlayTable {
  display: flex;
  flex-direction: column;
  
}
#topPlayTable > div {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 750px;
  height: 50px;
  margin-bottom: 20px;
  border: 1px solid black;
  border-radius: 5px;
  margin-left: 100px;
}
#topPlayTable > div > .map {
  height: 100%;
  width: 400px;
  display: flex;
  flex-direction: column;
}
#topPlayTable > div > .map > .title {
  height: 30px;
  width: 400px;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: bold;
  line-height: 30px;
  display: inline-block;
  
      white-space: nowrap!important;
    text-overflow: ellipsis!important;
    overflow: hidden!important;

}
#topPlayTable > div > .map > .difficulty {
  height: 20px;
  width: 250px;
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 20px;
  display: inline-block;

      white-space: nowrap!important;
    text-overflow: ellipsis!important;
    overflow: hidden!important;
}


#topPlayTable > div::before {
  /* Increment "my-sec-counter" by 1 */
  counter-increment: top-play-counter;
  content: counter(top-play-counter) ": ";
  display:block;
  position:absolute;
  left: -100px;
  width: 100px;
} 

#topPlayTable > div > .modContainer {
  width: 200px;
  display: flex;
  flex-direction: row;
  height: 50px;
}
#topPlayTable > div > .modContainer > .mod {
  width: 40px;
  margin-top: 10px;
  margin-bottom: 10px;
    background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: 40px 30px; /* Resize the background image to cover the entire container */
  height: 30px;
}
#topPlayTable > div > .pp {
  width: 100px;
  font-weight: bold;
  font-size: 20px;
  line-height: 50px;
  padding: 0;
  margin: 0;
}

.highcharts-figure,
.highcharts-data-table table {
  position: /*absolute*/relative;
  /*right: 0;*/
  min-width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.highcharts-figure * {
  margin: 0;
}
.highcharts-data-table table {
    font-family: Verdana, sans-serif;
    border-collapse: collapse;
    border: 1px solid #ebebeb;
    margin: 10px auto;
    text-align: center;
    width: 100%;
    /*max-width: 50%;*/
}

.highcharts-data-table caption {
    padding: 1em 0;
    font-size: 1.2em;
    color: #555;
}

.highcharts-data-table th {
    font-weight: 600;
    padding: 0.5em;
}

.highcharts-data-table td,
.highcharts-data-table th,
.highcharts-data-table caption {
    padding: 0.5em;
}

.highcharts-data-table thead tr,
.highcharts-data-table tr:nth-child(even) {
    background: #f8f8f8;
}

.highcharts-data-table tr:hover {
    background: #f1f7ff;
}


.highcharts-tooltip > span {
    background: rgb(255 255 255 / 85%);
    border: 1px solid silver;
    border-radius: 3px;
    box-shadow: 1px 1px 2px #888;
    padding: 8px;
}


sricon:before, .colour_icon:before {
  content: "★"
}
sricon, .colour_icon {
  font-family: Torus;
  padding-left: 0.5em;
  padding-right: 0.5em;
  font-size: larger;
  font-weight: bold;
  text-align: center;
  color: black;
  line-height: 2em;
  background: black;
  border-radius:10000px;
  width: fit-content;
  height: 2em;
  display: inline;
  margin-right: 0.5em;
}