#mobileWarning {
  display: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#loadingMessage {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  font-size: small;
  font-family: monospace;
  text-transform: uppercase;
}

#detailsContainer {
  width: 300px;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 0.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 600px) {
  #detailsContainer {
    border-top: 1px solid lightgray;
    width: 100%;
    top: unset;
    bottom: 0;
    height: 300px;
    max-height: 300px;
  }

  #mobileWarning {
    display: block;
    font-size: small;
    position: absolute;
    top: 0;
    left: 0;
    margin: 1rem;
  }
}

.detail-mono {
  font-family: monospace;
  font-weight: 700;
}

.lin-comb-info-container {
  font-family: monospace;
  display: flex;
  align-items: center;
  justify-content: space-between; 
}

.lin-comb-details-container {
  padding: 0.5rem;
  font-size: small;
}