/* Modal */
#sessionModal {
  display: none;
}

.modal {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal .content {
  display: flex;
  background-color: white;
  margin: 16px;
  border-radius: 8px;
  box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
  z-index: 1001;
  align-items: center;
}

#sessionModal form {
  margin: 8px;
}

/* UI */
#hostUI {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: none;
  z-index: 1000;
  pointer-events: none;
}

#sessionCode {
  position: absolute;
  top: 8px;
  left: 8px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
  pointer-events: all;
}

#code {
  border-radius: 3px;
  border: 1px solid #bbb;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2),
    0 2px 0 0 rgba(255, 255, 255, 0.7) inset;
  color: #333;
  width: calc(36ch - 8px);
  font-size: 0.85em;
  font-weight: 700;
  line-height: 1;
  padding: 2px 4px;
  white-space: nowrap;
}

#peersUI {
  position: absolute;
  top: 0px;
  right: 8px;
}
