* {
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
body {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--app-vw, 100vw);
  height: var(--app-vh, 100vh);
  padding: 4px 8px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
#controls {
  flex-shrink: 0;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
#controls img, #controls select, #controls button {
  vertical-align: middle;
}
#media-container {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  min-width: 0;
  position: relative;
  overflow: hidden;
}
#image_link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#image {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top left;
}
#video_tag {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top left;
}
#statusbar {
  flex-shrink: 0;
  width: 100%;
  min-width: 0;
  font-size: 0.85em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#medium {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
}