html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background: #fdfdfd;
}

body.dark {
  background: #000;
  color: #fcfcfc;
}
body.dark a {
  color: #fff290;
}
body.dark #log {
  border-top: 1px solid #ccc;
}

code {
  background: #666;
  padding: 2px 4px 2px 4px;
}

code.cmdline::before {
  content: "> ";
}

main {
  display: flex;
  flex-direction: column;
  max-height: 100%;
  height: 100%;
  padding: 5px 5px 0;
  box-sizing: border-box;
}

#log {
  flex-grow: 1;
  border-top: 1px solid #333;
  margin: 0;
  overflow: auto;
  max-height: 100%;
  padding-top: 5px;
  position: relative;
}

h1 {
  margin: 0;
}

.hidden {
  display: none !important;
}

.statusDot {
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  border: 1px solid #333;
}
.statusDot.disconnected {
  background: red;
}
.statusDot.connecting {
  background: orange;
}
.statusDot.connected {
  background: green;
}

.gg-copy {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 14px;
  height: 18px;
  border: 2px solid;
  margin-left: 0px;
  margin-top: -12px;
}

.gg-copy::after,
.gg-copy::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
}

.gg-copy::before {
  background: linear-gradient(to left, currentColor 5px, transparent 0) no-repeat right top/5px 2px, linear-gradient(to left, currentColor 5px, transparent 0) no-repeat left bottom/2px 5px;
  box-shadow: inset -4px -4px 0 -2px;
  bottom: -6px;
  right: -6px;
  width: 14px;
  height: 18px;
}

.gg-copy::after {
  width: 6px;
  height: 2px;
  background: currentColor;
  left: 2px;
  top: 2px;
  box-shadow: 0 4px 0, 0 8px 0;
}

.gg-outer {
  display: inline-block;
  transform: scale(0.6);
}

.copied {
  position: absolute;
  background: #333;
  z-index: 2;
  font-size: 0.5em;
  padding: 2px;
  border-radius: 2px;
  left: auto;
  margin-left: 2px;
  margin-top: 1.4px;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reconnectButton {
  position: absolute;
  bottom: 0;
  right: 0;
}

span.cmd {
  color: #66acf7;
}

.spinner {
  display: inline-flex;
  animation-name: spin;
  animation-duration: 5000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  background: transparent;
  width: 12px;
  height: 12px;
  justify-content: center;
  align-items: center;
  border: 2px dashed white;
  border-radius: 50%;
  margin: 0 0.5em;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#email-address-wrapper {
  display: flex;
  align-items: center;
}
#email-address-wrapper > * {
  margin-right: 0.5em;
}

/*# sourceMappingURL=style.css.map */
