.disconnected-modal-container {
  position: absolute;
  z-index: 2000;
  inset: 0;
  background: #f5f5f5;
  color: black;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  font-size: 18px;
  overflow-y: scroll;
}

.disconnected-modal {
  display: flex;
  /* width: 100%; */
  /* min-height: 100%; */
  flex-direction: column;
  align-items: stretch;
  gap: 2em;
  justify-content: center;
  margin-block: 3em;
}

.disconnected-modal-header {
  background: #18afe3;
  color: white;
  /* width: 100%; */
  text-align: center;
  padding: 1em;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
}
.disconnected-modal-header h1 {
  color: white;
}

.disconnected-modal-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1em;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1em;
  /* margin-inline: 1em; */
  text-align: left;
}

.disconnected-modal h2 {
  border-bottom: solid 2px #18afe3;
  /* border-bottom: solid 1px #18afe3; */
  width: 100%;
  padding-top: 0.4em;
}

.center {
  text-align: center;
}

.disconnected-modal-body .flex-center {
  display: flex;
  gap: 1em;
  justify-content: center;
  align-items: center;
}

#sessionId {
  font-size: 2em;
  color: #094b85;
}

.disconnected-modal-body > ul > li {
  margin-bottom: 2em;
}

.ticker-panel {
  margin-bottom: 20px;
  background-color: #ffffff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  border-color: transparent;
}

.ticker-body {
  padding: 15px;
}
.ticker-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
  color: #165083;
  background-color: #75caeb;
  border-color: transparent;
  font-weight: bold;
}

.ticker-icon {
  height: 1em;
  width: 1em;
}
