/* Regular style */
@font-face {
    font-family: 'VMN';
    src: url('fonts/VictorMono-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* Bold style */
@font-face {
    font-family: 'VMN';
    src: url('fonts/VictorMono-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

/* Italic style */
@font-face {
    font-family: 'VMN';
    src: url('fonts/VictorMono-Italic.woff2') format('woff2');
    font-weight: normal;
    font-style: italic;
}

/* Bold Italic style */
@font-face {
    font-family: 'VMN';
    src: url('fonts/VictorMono-BoldItalic.woff2') format('woff2');
    font-weight: bold;
    font-style: italic;
}

body {
  display: flex;
  height: 100vh; /* Ensure full height of the viewport */
  margin: 0;
  font-family: 'VMN', sans-serif;
  overflow: hidden;
}

a {
  text-shadow:0px 0px 1px #555;
  color: #555;
  text-decoration: none;
}

a:visited {
  text-shadow:0px 0px 1px #555;
  color: #555;
  text-decoration: none;
}

a:hover {
  text-shadow:0px 0px 1px #555;
  color: #555;
  text-decoration: none;
}

.orientation-banner {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fc0;
  color: black;
  text-align: center;
  padding-top: 3px;
  padding-bottom: 3px;
  font-size: 14px;
  z-index: 1000;
}

.credit {
  position: sticky;
  top: 0;
  left: 0;
  background-color: white;
  width: 100%;
  color: #999;
  font-style: italic;
  text-align: left;
  padding: 3px 10px 0 10px;
  margin: 0;
  font-size: 80%;
}


.left-pane {
  display: inline-block;
  height: 100vh;
  border-right: 2px solid #ccc;
  padding-top: 0px;
  padding-right: 20px;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto scroll;
  white-space: nowrap;
}

.right-pane {
  height: 100vh;
  flex-grow: 1;
  padding: 10px;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: hidden;
}

ul {
  list-style-type: none;
  padding-left: 20px;
}

li {
  line-height: 1.2em;
  cursor: pointer;
}

.selected {
  text-shadow:0px 0px 1px black;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}
