  

  html {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
  }

  .topCardHeader {
    font-size: 10vh;
    padding-left: 6vw;
    margin-bottom: 0;
  }

  .text {
    padding-bottom: 2vh;
  }

  .releaseDate {
    padding-left: 6vw;
    color: white;
  }

  .imgCase {
    max-height: 35vh;
  }

  #skinledgerSkyscraperContainer {
    max-width: 12vw;
    position: absolute;
    right: 2vw;
    left: 5vw;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #skinledgerSkyscraperContainer a {
    display: block;
    width: 100%;
    height: 100%;
  }

  #skinledgerSkyscraperContainer a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .container {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #dataCard {
    background-color: #333;
    display: grid;
    place-items: center;
    padding: 4vh 2vw;
    position: relative;
  }

  #tableCard {
    background-color: #1c1c1c;
    width: 55vw;
    padding: 1vw;
    margin: 4vh auto;
  }

  #tableCard table {
    width: 100%;
    color: white;
    border-collapse: collapse;
    padding: 1vh;
  }

  /* Apply the style to all table rows */
  #tableCard table tr {
    border-bottom: 1px solid white; /* Set the border to a thin white line */
  }
  
  #tableCard table tr:last-child {
    border-bottom: none;
    padding-bottom: 2vw;
  }

  #tableCard table tr:nth-child(1) {
    padding-top: 2vw;
  }

  #tableCard table td {
    padding: 1vw;
  }

  #tableCard td:nth-child(4) {
    text-align: right;
  }

  #tableCard td:nth-child(3) {
    text-align: right;
  }

  #tableCard td:nth-child(2) {
    text-align: right;
  }

  #tableCard tr:nth-child(1) td {
    margin-bottom: 5vh;
  }

  #tableCard tr:nth-child(4) td {
    margin-bottom: 5vh;
  }

  /* Apply custom padding to the middle column (2nd column) */
  #tableCard tr td:nth-child(2) {
    padding: 0;
  }

  /* Set a minimum width for the second column */
  td:nth-child(2) {
    min-width: 112px;
  }

  #table2 {
    margin-top: 5vh;
  }
   
  
  * {
    box-sizing: inherit;
  }
  *:before, *:after {
    box-sizing: inherit;
  }
  
  .chartCard {
    height: calc(100vh - 40px);
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .chartBox {
    width: 55%;
    max-height: calc(95vh - 40px);
    padding: 20px;
    border-radius: 20px;
    border: solid 3px #ed685f;
    background: #1c1c1c;
  }

  .apexcharts-tooltip {
    padding: 2px;
  }

  #steamchart {
    margin-top: 5vh;
  }

  #chartline {
    margin-top: -40px;
  }
  
  #unboxHistory {
    max-height: calc(95vh - 80px);
  }

  .tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 2px dotted #F44336;
  }
  
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    border: 1px solid black;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: 150%;
    left: 50%;
    margin-left: -60px;
  }
  
  .tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #333 transparent;
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
  }

  #caseContent-flex-container {
    display: flex;
    flex-wrap: wrap;
    background-color: #1c1c1c;
    justify-content: center;
  }
  
  #caseContent-flex-container > div {
    background-color: #333;
    width: 23rem;
    margin: 1rem;
    text-align: center;
    line-height: 1rem;
    font-size: 1.25rem;
    border-radius: 0.250rem;
    box-shadow: rgba(0, 0, 0, 0.50) 0 8px 15px;
  }
  
  #caseContent-flex-container img {
    width: 80%;
    align-self: center;
  }
  
  #caseContent-flex-container a {
    color: white;
  }

  .container {
    text-align: center;
  }

  .progress-bar {
    width: 300px;
    height: 15px;
    background-color: #1c1c1c;
    border-radius: 5px;
    margin: 20px auto;
    margin-top: 40px;
    position: relative;
  }

  .range-marker {
      height: 100%;
      position: absolute;
      top: 0;
  }

  .range-highlight {
      height: 100%;
      width: 100%;
      border-radius: 5px;
      background-color: #F44336; /* Set the color you prefer */
  }

  .float-label {
    width: 300px;
    position: relative;
    margin: 20px auto;
  }

  .float-min-value {
    position: absolute;
    margin-top: -20px;
  }
  
  .float-max-value {
    position: absolute;
    margin-top: -20px;
  }

  .float-value-wrapper {
    position: absolute;
  }

  .float-value {
    position: relative;
    left: -50%;
    white-space: nowrap;
    color: white;
    font-size: 0.85rem;
  }

  #rangeButtons {
    margin-top: 2vh;
  }

  #rangeButtons button {
    background-color: #2a2a2a;
    color: #ffffff;
    border: 1px solid #444;
    padding: 6px 12px;
    margin: 4px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s, color 0.2s;
  }

  #rangeButtons button:hover {
    background-color: #3a3a3a;
  }

  #rangeButtons button.active {
    background-color: #F44336;
    color: #fff;
    border-color: #F44336;
  }

  @media only screen and (max-width: 1250px) {
    .chartBox {
      width: 65vw
    }
    #tableCard {
      width: 65vw
    }
    header {
      padding-left: 17.5vw;
    }
    .main-navigation-toggle + label {
      right: 17.5vw
    }
    #skinledgerSkyscraperContainer {
      left: 2vw
    }
  }
  
  @media only screen and (max-width: 1100px) {
    .chartBox {
      width: 75vw
    }
    #tableCard {
      width: 75vw
    }
    header {
      padding-left: 12.5vw;
    }
    .main-navigation-toggle + label {
      right: 12.5vw
    }
    #skinledgerSkyscraperContainer {
      left: 1vw;
      max-width: 10vw;
    }
  }

  @media only screen and (max-width: 900px) {
    .chartBox {
      width: 85vw
    }
    #tableCard {
      width: 85vw
    }
    header {
      padding-left: 7.5vw;
    }
    .main-navigation-toggle + label {
      right: 7.5vw
    }
    #skinledgerSkyscraperContainer {
      display: none;
    }
  }

  @media only screen and (max-width: 780px) {
    .chartBox {
      width: 95vw
    }
    #tableCard {
      width: 95vw
    }
    header {
      padding-left: 2.5vw;
    }
    .main-navigation-toggle + label {
      right: 2.5vw
    }
  }

  @media only screen and (max-width: 680px) {
    /* Use the :nth-child pseudo-class to target the specific column */
    #table1 td:nth-child(2),
    #table1 th:nth-child(2) {
      display: none;
    }
    #table2 td:nth-child(2),
    #table2 th:nth-child(2) {
    display: none;
    }
  }

  @media only screen and (max-width: 600px) {
    .imgCase {
      max-height: 20vh;
    }
    .topCardHeader {
      font-size: 30px;
    }
  }

  @media only screen and (max-width: 500px) {
    .imgCase {
      max-height: 15vh;
    }
    .topCardHeader {
      font-size: 20px;
    }
  }

  @media only screen and (max-width: 500px) {
    .chartBox {
      width: 95vw
    }
  }

  

  html {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
  }

  .topCardHeader {
    font-size: 10vh;
    padding-left: 6vw;
    margin-bottom: 0;
  }

  .text {
    padding-bottom: 2vh;
  }

  .releaseDate {
    padding-left: 6vw;
    color: white;
  }

  .imgCase {
    max-height: 35vh;
  }

  .container {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #dataCard {
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #tableCard {
    /* border-radius: 5px;
    border: solid 3px #ed685f; */
    margin-top: 4vh;
    margin-bottom: 4vh;
    background-color: #1c1c1c;
    width: 55vw;
    padding: 1vw;
  }

  #tableCard table {
    width: 100%;
    color: white;
    border-collapse: collapse;
    padding: 1vh;
  }

  /* Apply the style to all table rows */
  #tableCard table tr {
    border-bottom: 1px solid white; /* Set the border to a thin white line */
  }
  
  #tableCard table tr:last-child {
    border-bottom: none;
    padding-bottom: 2vw;
  }

  #tableCard table tr:nth-child(1) {
    padding-top: 2vw;
  }

  #tableCard table td {
    padding: 1vw;
  }

  #tableCard td:nth-child(4) {
    text-align: right;
  }

  #tableCard td:nth-child(3) {
    text-align: right;
  }

  #tableCard td:nth-child(2) {
    text-align: right;
  }

  #tableCard tr:nth-child(1) td {
    margin-bottom: 5vh;
  }

  #tableCard tr:nth-child(4) td {
    margin-bottom: 5vh;
  }

  /* Apply custom padding to the middle column (2nd column) */
  #tableCard tr td:nth-child(2) {
    padding: 0;
  }

  /* Set a minimum width for the second column */
  td:nth-child(2) {
    min-width: 112px;
  }

  #table2 {
    margin-top: 5vh;
  }
   
  
  * {
    box-sizing: inherit;
  }
  *:before, *:after {
    box-sizing: inherit;
  }
  
  .chartCard {
    height: calc(100vh - 40px);
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .chartBox {
    width: 55%;
    max-height: calc(95vh - 40px);
    padding: 20px;
    border-radius: 20px;
    border: solid 3px #ed685f;
    background: #1c1c1c;
  }

  .apexcharts-tooltip {
    padding: 2px;
  }

  #steamchart {
    margin-top: 5vh;
  }

  #chartline {
    margin-top: -40px;
  }
  
  #unboxHistory {
    max-height: calc(95vh - 80px);
  }

  .tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 2px dotted #F44336;
  }
  
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    border: 1px solid black;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: 150%;
    left: 50%;
    margin-left: -60px;
  }
  
  .tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #333 transparent;
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
  }

  #caseContent-flex-container {
    display: flex;
    flex-wrap: wrap;
    background-color: #1c1c1c;
    justify-content: center;
  }
  
  #caseContent-flex-container > div {
    background-color: #333;
    width: 23rem;
    margin: 1rem;
    text-align: center;
    line-height: 1rem;
    font-size: 1.25rem;
    border-radius: 0.250rem;
    box-shadow: rgba(0, 0, 0, 0.50) 0 8px 15px;
  }
  
  #caseContent-flex-container img {
    width: 80%;
    align-self: center;
  }
  
  #caseContent-flex-container a {
    color: white;
  }

  .container {
    text-align: center;
  }

  .progress-bar {
    width: 300px;
    height: 15px;
    background-color: #1c1c1c;
    border-radius: 5px;
    margin: 20px auto;
    margin-top: 40px;
    position: relative;
  }

  .range-marker {
      height: 100%;
      position: absolute;
      top: 0;
  }

  .range-highlight {
      height: 100%;
      width: 100%;
      border-radius: 5px;
      background-color: #F44336; /* Set the color you prefer */
  }

  .float-label {
    width: 300px;
    position: relative;
    margin: 20px auto;
  }

  .float-min-value {
    position: absolute;
    margin-top: -20px;
  }
  
  .float-max-value {
    position: absolute;
    margin-top: -20px;
  }

  .float-value-wrapper {
    position: absolute;
  }

  .float-value {
    position: relative;
    left: -50%;
    white-space: nowrap;
    color: white;
    font-size: 0.85rem;
  }

  #csmoneypriceDiv {
    border-style: solid;
    border-color: #C85CD1;
    border-width: 0.1vw;
    padding: 0.5vw;
    border-radius: 0.5vw;
    color: white;
  }

  .clickable-date {
    cursor: pointer;
  }

  #datePicker {
    background-color: #1c1c1c;       /* dark background */
    color: white;                 /* white text */
    border: 1px solid #333;       /* gray border */
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    z-index: 9999;
    position: absolute;
  }

  /* Optional: change focus outline */
  #datePicker:focus {
    outline: 1px solid #F44336; /* red styling element */
  }

  /* Optional: override Chrome’s calendar icon color */
  input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1); /* Inverts the white icon so it's visible on dark bg */
    cursor: pointer;
  }

  .cswhaleSkyscraperContainer {
  position: absolute;
  left: 5vw; /* stick to left side */
  top: 50%;
  transform: translateY(-50%);
  width: 12vw; /* responsive width */
  max-width: 200px; /* optional limit for very large screens */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Maintain a tall ratio using aspect-ratio */
.cswhaleSkyscraperContainer iframe {
  width: 100%;
  aspect-ratio: 1 / 4; /* 1:4 ratio (width:height) */
  border: none;
  border-radius: 18px;
}

/* Overlay matches iframe size */
.cswhaleSkyscraperContainer .iframe-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-radius: 18px;
}

  @media only screen and (max-width: 1250px) {
    .chartBox {
      width: 65vw
    }
    #tableCard {
      width: 65vw
    }
    header {
      padding-left: 17.5vw;
    }
    .main-navigation-toggle + label {
      right: 17.5vw
    }
    .cswhaleSkyscraperContainer {
    left: 2.5vw;
  }
  }
  
  @media only screen and (max-width: 1100px) {
    .chartBox {
      width: 75vw
    }
    #tableCard {
      width: 75vw
    }
    header {
      padding-left: 12.5vw;
    }
    .main-navigation-toggle + label {
      right: 12.5vw
    }
    .cswhaleSkyscraperContainer {
      display: none;
    }
  }

  @media only screen and (max-width: 900px) {
    .chartBox {
      width: 85vw
    }
    #tableCard {
      width: 85vw
    }
    header {
      padding-left: 7.5vw;
    }
    .main-navigation-toggle + label {
      right: 7.5vw
    }
  }

  @media only screen and (max-width: 780px) {
    .chartBox {
      width: 95vw
    }
    #tableCard {
      width: 95vw
    }
    header {
      padding-left: 2.5vw;
    }
    .main-navigation-toggle + label {
      right: 2.5vw
    }
  }

  @media only screen and (max-width: 680px) {
    /* Use the :nth-child pseudo-class to target the specific column */
    #table1 td:nth-child(2),
    #table1 th:nth-child(2) {
      display: none;
    }
    #table2 td:nth-child(2),
    #table2 th:nth-child(2) {
    display: none;
    }
  }

  @media only screen and (max-width: 600px) {
    .imgCase {
      max-height: 20vh;
    }
    .topCardHeader {
      font-size: 30px;
    }
  }

  @media only screen and (max-width: 500px) {
    .imgCase {
      max-height: 15vh;
    }
    .topCardHeader {
      font-size: 20px;
    }
  }

  @media only screen and (max-width: 500px) {
    .chartBox {
      width: 95vw
    }
  }

  @media only screen and (min-width: 1763px) {
    #table1 {
      font-size: 1.50rem;
    }
    #table2 {
      font-size: 1.50rem;
    }
    .releaseDate {
      font-size: 1.50rem;
    }
    #rangeButtons button {
      font-size: 1.40rem;
    }
    #hoverInfo {
      font-size: 1.40rem;
    }
  }
  
  @media only screen and (min-width: 2020px) {
    #table1 {
      font-size: 1.75rem;
    }
    #table2 {
      font-size: 1.75rem;
    }
    .releaseDate {
      font-size: 1.75rem;
    }
    #rangeButtons button {
      font-size: 1.60rem;
    }
    #hoverInfo {
      font-size: 1.60rem;
    }
  }
  
  @media only screen and (min-width: 2525px) {
    #table1 {
      font-size: 2.25rem;
    }
    #table2 {
      font-size: 2.25rem;
    }
    .releaseDate {
      font-size: 2.25rem;
    }
    #rangeButtons button {
      font-size: 2.00rem;
    }
    #hoverInfo {
      font-size: 2.00rem;
    }
  }