body {
  font-family: Roboto, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.5;
  padding: 0;
  margin: 0;
}

.sign-in-prompt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.root {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
}

.floating {
  position: absolute;
  top: 96px;
  left: 30px;
  display: flex;
  border-radius: 4px;
}

.error-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  border-radius: 4px;
  background: #fff;
  color: #ff0000;
  max-width: 300px;
  max-height: 50px;
  padding: 30px;
  border: 2px solid #000;
}

.content {
  display: flex;
  justify-content: space-between;
  height: 100%;
  overflow: hidden;
}

.right-pane {
  display: flex;
  flex-direction: column;
  border-left: 1px solid #333;
  width: 30%;
  height: 100%;
  overflow-y: auto;
  padding: 20px;
}

.left-pane {
  width: 70%;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  background-color: #111;
  justify-content: center;
  align-items: center;
}

.header {
  width: 100%;
  background-color: #000;
  border-bottom: 1px solid #333;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.header > .links {
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 20px;
  margin-right: 24px;
}

#title {
  font-size: 30px;
  text-decoration: none;
  font-weight: lighter;
  margin-left: 24px;
  padding: 10px;
  color: #ccc;
}

.icon {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.links > * {
  text-decoration: none;
  color: #ccc;
  font-weight: lighter;
  cursor: pointer;
}

.links > *:hover {
  color: #fff;
}

.hidden {
  display: none !important;
}
