body {
    background-color: #F0F3F4;
    font-family: "Arial";
}

#to_top {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 16px;
    border: none;
    outline: none;
    background-color: #93B7F7;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
}

#container {
    background-color: #93B7F7;
    border: 2px dashed #000000;
    border-radius: 13px;
    padding: 10px;
}

#vis_wrapper {
    height: 100%;
    margin: auto;
}

#svg {
    width: 100%;
    height: 100px;
    position: relative;
    border: 1px solid #000;
    display: block;
    margin: auto;
}

#bitmap {
    margin: 5px;
}

#bitmap_container {
    width: 95%;
    margin: auto;
}

#cumulative_lost_packets_plot, #cons_lost_histogram, #protection_line_plot, #protection_histogram_plot{
    position: relative;
    left: 0%;
    /*width: 100%; */
    height: auto;
    margin: auto;
}

#sequence_diagram {
    margin: auto;
    width: 70%;
}

#show_all {
    margin-bottom: 5px;
}

.collapsible {
  background-color: #777;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.active, .collapsible:hover {
  background-color: #555;
}

.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #f1f1f1;
}

.summary {
    position: absolute;
    bottom: 0px;
    right: 2.5%;
}

.bitmap_colorbar_canvas {
    position: relative;
    left: 0%;
    width: 80%;
    height: 100%;
}

.bitmap_colorbar_canvas2 {
    position: relative;
    left: 0%;
    width: 20%;
    height: 100%;
}

.colorbar_text_container {
    position: relative;
    left: 0%;
    width: 100%;
    height: 10px;
    display: flex;
}

.plot_row {
    width: 100%;
    display: flex;
}

.colorbar_container {
    position: relative;
    right: 0%;
    width: 800px;
    height: 50px;
    margin: auto;
    padding-top: 10px;
}

.colorbar {
    position: relative;
    right: 0%;
    width: 100%;
    height: 50%;
    display: flex;
}

.colorbar_text {
    margin: 0px;
}

input {
    width: 75px;
}