@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

::placeholder {
  color: rgba(255, 255, 255, .5);
}

body {
  margin: 0;
  background: #26a0da;
  background: -moz-radial-gradient(circle, circle, #26a0da 0%, #314755 100%);
  background: -webkit-radial-gradient(circle, #26a0da 0%, #314755 100%);
  background: radial-gradient(circle, #26a0da 0%, #314755 100%);
  font-family: 'Roboto', sans-serif;
  background-image: url("/assets/bg_ktV3.jpg");
  background-size: 100% 100%;
  background-attachment: fixed;
  background-position: center;
  overflow: auto;
}

header {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #949ba2;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

header img {
  max-height: 1.5em;
  filter: invert(99%) sepia(40%) saturate(4439%) hue-rotate(343deg) brightness(108%) contrast(108%);
}

a,
a:visited {
  color: #fff209;
  text-decoration: none;
}

a:hover {
  text-decoration: underline dotted;
}

h2 {
  margin: 0 0 0 20px;
  padding: 0;
  text-transform: uppercase;
}

h3 {
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-size: 1.25em;
  font-weight: 900;
  color: #9bd0dd;
}

h4 {
  margin: .5em 0;
  padding: 0;
  font-size: 1.3em;
  font-weight: 500;
  line-height: .25em;
  color: #9bd0dd;
}

h5 {
  margin: .5em 0;
  padding: 0;
  font-size: .9em;
  font-weight: 500;
  text-transform: uppercase;
}

.logo-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-grow: 0;
  width: 200px;
  height: 60px;
  color: #ecf6f5;
  background-color: rgba(0, 0, 0, .1);
}

.title-section {
  display: flex;
  flex-direction: row;
  height: 60px;
  width: calc(100% - 200px);
  background-color: rgba(0, 0, 0, .1);
  color: #fff;
  align-items: center;
  padding-left: 20px;
}

.container {
  display: flex;
  flex-direction: column;
  max-height: 100vh;
  padding-top: 60px;
}

/* CSS for the link bar */
.link-bar {
  width: 178px;
  background-color: rgba(0, 0, 0, .1);
  color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.2em;
  overflow-y: auto;
  padding: 10px;
  position: fixed;
  top: 60px;
  bottom: 0;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* Link bar list */
.link-bar ul {
  list-style: none;
  /* Remove default bullet points */
  padding: 0px 10px;
  margin: 10px 0 0 0;
}

/* Link bar list items */
.link-bar li {
  margin-bottom: 10px;
}

/* Link bar categories and links */
.link-bar .category>a,
.link-bar a {
  display: inline-block;
  font-weight: bold;
  color: inherit;
  text-decoration: none;
  padding: 5px 0;
}

.link-bar a:hover {
  color: #fff209 !important;
}

/* Link bar sub-links (buttons) */
.link-bar ul ul li {
  margin-bottom: 2px;
  font-size: .75em;
}

.link-bar ul ul {
  padding: 0 5px;
}

.link-bar ul ul a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background-color 0.3s;
  font-weight: 300;
  font-size: 1em;
}

/* Hover effect on link bar sub-links (buttons) */
.link-bar ul ul a:hover {
  background-color: rgba(4, 136, 169, .9);
  color: #fff !important;
}

/* Remove underline from links */
.link-bar a {
  text-decoration: none;
}

/* Remove link styling for visited links */
.link-bar a:visited {
  color: inherit;
}

.link-bar a.active {
  color: rgb(251, 255, 8);
}
.link-bar a.active::before {
  content: "> ";
}

/* CSS for the dashboard content */
.dashboard-content {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 0;
  padding: 20px;
  margin-left: 220px;
  gap: 20px;
}

.dashboard-content .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.row i {
  padding-left: 1em;
  font-size: 2.75em;
}

.icon-container {
  overflow: hidden;
}

.row span {
  font-size: .8em;
  line-height: 1em;
  color: rgba(255, 255, 255, .75);
}

.row .dashboard-card.small-card {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}

.dashboard-nocard {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  flex-basis: 100%;
  color: #ecf6f5;
  padding: 10px 20px;
}

.dashboard-nocard span {
  font-size: .9em;
  font-weight: 400;
}

.dashboard-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  background-color: rgba(0, 27, 48, 0.2);
  color: #ecf6f5;
  padding: 20px;
  border-radius: 5px;
}

.dashboard-card.medium-card {
  color: #ecf6f5;
}

.dashboard-card:hover {
  background-color: rgba(0, 27, 48, 0.8);
  color: #ecf6f5;
  cursor: pointer;
  text-decoration: none;
}

.full-card:hover {
  background-color: rgba(0, 0, 0, .1);
  cursor: default;
}


.dashboard-card img {
  max-width: 100%;
  margin: .75em auto 1.5em auto;
}

.dashboard-card ul {
  list-style-type: disc;
  padding: 0 16px;
  font-size: .85em;
}

.dashboard-card ul li {
  list-style-type: disc;
  padding: .25em 0;
}

.itemTag {
  margin: auto 0 0 auto;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: rgba(4, 136, 169, 0.95);
  color: #ffffff;
  font-weight: 700;
}

.listBoldSpan {
  font-weight: 900;
  text-transform: uppercase;
}

/* Small Card */
.small-card {
  width: 225px;
  max-height: 45px;
}

.small-card a, a:visited {
  color: #ffffff;
}

/* Medium Card */
.medium-card {
  flex-basis: calc(25% - 60px);
  min-height: 200px;
}

/* Large Card */
.large-card {
  flex-basis: 35%;
}

/* Full-size Card */
.full-card {
  flex-basis: 100%;
}

footer {
  flex-basis: 100%;
  color: #fff;
  padding: 10px 20px 20px 20px;
  font-family: 'Roboto Condensed', sans-serif;
  text-shadow: -1px 1px #171717;
}

.footer-nav {
  padding: 0;
  margin: 10px 0;
  list-style: none;
}

.footer-nav a {
  color: #fff;
  font-size: .85em;
  margin-right: 1em;
}

.footer-nav a:hover {
  color: #fbff08;
}

label {
  font-weight: 500;
  margin-bottom: .5em;
}

input,
select {
  margin-bottom: 1.5em;
  padding: .5em .5em;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 1em;
  border: none;
  outline: none;
  border-radius: .25em;
}
select {
  color: rgb(0, 0, 0);
}

button {
  
  padding: .5em 1em;
  color: #000;
  background: #fff;
  border: 2px solid rgba(0, 0, 0, .75);
  border-radius: .25em;
  font-weight: 700;

}

button:hover {
  cursor: pointer;
  border: 2px solid #2896cb;
  outline: none;
  color: #2896cb; 
}
button:active {
  color: #fff;
  background: #000;
}

.checkboxInput {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5em;
}

.checkboxInput input {
  margin-bottom: .25em;
}
input[type=color] {
  width: 2em;
  height: 2em;
  margin: 0 1em 1.5em 1em;
  padding: .15em;
}

/* Responsive styles */
@media (max-width: 768px) {

  /* Adjust styles for smaller screens */
  .container {
    flex-direction: column;
  }

  .link-bar {
    display: none;
  }

  footer {
    padding: 0 0 10px 0;
    margin-left: 0px;
    text-align: center;
  }

  .dashboard-content {
    flex-grow: initial;
    margin-left: 0px;
  }

  /* Small Card */
  .small-card {
    width: 225px;
    max-height: 45px;
  }

  /* Medium Card */
  .medium-card {
    flex-basis: calc(50% - 50px);
    min-height: 200px;
  }

  /* Large Card */
  .large-card {
    flex-basis: 75%;
  }

  header {
    position: relative;
    flex-direction: column;
    background-color: rgba(0, 0, 0, .1);
  }

  .logo-section {
    background-color: rgba(0, 0, 0, 0);
    height: 40px;
    width: 100%;
    text-align: center;
    padding: 0;
  }

  .title-section {
    background-color: rgba(0, 0, 0, 0);
    height: 40px;
    width: calc(100% - 20px);
    padding: 0 0 0 20px;
  }

  .container {
    padding-top: 0px;
  }
}


@media (max-width: 1369px) {

  /* Medium Card */
  .medium-card {
    flex-basis: calc(33% - 55px);
    min-height: 200px;
  }
}

@media (max-width: 1080px) {

  /* Medium Card */
  .medium-card {
    flex-basis: calc(50% - 50px);
    min-height: 200px;
  }
}

@media (max-width: 550px) {

  .small-card {
    width: 100%;
    max-height: 45px;
  }

  /* Medium Card */
  .medium-card {
    flex-basis: 100%;
    min-height: 200px;
  }
}

.placement {
  font-size: .8em;
  display: flex;
  align-items: center;
}

.bold-header {
  font-weight: 700;
  margin: 1.25em 0 .75em 0;
}

.placement span {
  margin-bottom: .25em;

}

.rankT {
  flex: 0 0 auto;
  font-weight: 700;
  margin-right: 0.5em;
}

.streamerT {
  flex-grow: 1;
  white-space: nowrap; 
  overflow: hidden;
  text-overflow: ellipsis;
}

.scoreT, .levelT {
  flex: 0 0 40px;
  text-align: right;
  margin-left: .5em;
}

.settingsT {
  flex: 0 0 55px;
  text-align: right;
  margin-left: 0.5em;

}

.note {
  font-size: 1em;
  padding: .5em 0;
  font-style: italic;
}
.featured {
  display: flex;
  flex-direction: row;
  margin-top: .75em;

}
.feature-streamer {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 1em;
  margin-bottom: .25em;
}

.the-streamer {
  font-size: 1.25em;
}

.videoPlayer iframe {
  margin-top: .5em;
  border-radius:5px;
}

