html, body{
  background-color: #363D4F;
}

#firepad-control{
  margin-top:85px;
  width: 90vw;
}

#firepad-control section{
  margin: 6px 12px;
}

.form-group{
  border-radius: 5px;
  background-color: #26a68d;
  height:38px;
  padding: 0 10px;
}

#clear-terminal{
  float:right;
  margin-right: 0px !important;
}

#firepad-container {
  margin-top:5px;
  width: 90vw;
  height: 75vh;
  background: #eaeaea;
  -moz-box-shadow: 0 5px 25px black;
  -webkit-box-shadow: 0 5px 25px black;
  box-shadow: 0 5px 25px black;
  overflow: hidden;
}

#firepad-userlist {
  position: relative;
  left: 0;
  top: 0;
  bottom: 100px;
  width: 175px;
  height: 55vh;
}

#firepad {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 75vh;
  padding-right:5px;
}

#firepad * ::-webkit-scrollbar-track{
  border-radius: 6px;
  background-color: #282D3A;
}

#firepad * ::-webkit-scrollbar{
  width: 8px;
  background-color: #282D3A;
}

#firepad * ::-webkit-scrollbar-thumb{
  border-radius: 10px;
  background-color: #191c25;
}

.CodeMirror {
  font-size: 16px
}

.CodeMirror-gutters{
  padding-right: 6px;
}

#terminal{
  overflow-y: auto;
  background-color: black;
  color: white;
  font-family: monospace;
  font-size: 16px;
  width: 50%;
  height: 75vh;
  padding: 4px 18px;
}

#terminal p, pre{
  color: white;
  overflow-x: auto;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
  margin: 0 0;
  line-height: normal;
}

#terminal::-webkit-scrollbar-track{
  border-radius: 6px;
  background-color: black;
}

#terminal::-webkit-scrollbar{
  width: 8px;
  background-color: black;
}

#terminal::-webkit-scrollbar-thumb{
  border-radius: 10px;
  background-color: #191c25;
}

/* Meta lines: who ran what, and how the run ended. Dimmer than program output
   so the program's own text stays the thing you read. */
.term-status{
  font-size: 13px;
  letter-spacing: 0.02em;
  margin: 10px 0 4px;
}

.term-status.term-run{
  color: #6fd3bd;
  border-top: 1px solid #1f3b37;
  padding-top: 8px;
}

#output > .term-status.term-run:first-child{
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.term-status.term-ok{
  color: #5d6b78;
}

.term-status.term-error{
  color: #ff6b6b;
}

#indicator{
  color: #3f4a57 !important;
}

#terminal.running #indicator{
  color: greenyellow !important;
}

#terminal-input{
  color: greenyellow;
  outline: none;
  min-width: 4px;
  caret-color: greenyellow;
  white-space: pre-wrap;
  word-break: break-word;
}

#firepad-control .dropdown-menu{
  background-color: #2b3040;
  border: 1px solid #1a7564;
  border-radius: 5px;
  padding: 6px 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

#firepad-control .dropdown-menu .dropdown-item{
  color: #eaeaea;
  font-size: 15px;
  padding: 6px 16px;
}

#firepad-control .dropdown-menu .dropdown-item:hover,
#firepad-control .dropdown-menu .dropdown-item:focus{
  transition: 200ms ease;
  background-color: #26a68d !important;
  color: white !important;
}

#firepad-control .dropdown-menu .dropdown-item.active,
#firepad-control .dropdown-menu .dropdown-item:active{
  background-color: #1a7564 !important;
  color: white !important;
}

#firepad-control .dropdown-divider{
  border-top-color: #475068;
}

#firepad-control .scrollable-menu::-webkit-scrollbar-track,
#firepad-control .scrollable-menu::-webkit-scrollbar{
  background-color: #2b3040;
}

#firepad-control .scrollable-menu::-webkit-scrollbar-thumb{
  background-color: #475068;
}

#run-btn{
  position: relative;
  bottom: 52px;
}

.btn-info{
  border-color: #26a68d;
  border-radius: 5px;
  background-color: #26a68d !important;
  font-size: 16px;
  color: white !important;
}

.btn-info:hover{
  transition: 300ms ease;
  border-color: #1a7564;
  background-color: #1a7564 !important;
}

.btn-info:focus, .btn-info:active{
  outline: none !important;
  box-shadow: none !important;
}

.btn-info:disabled{
  pointer-events:none;
}

.scrollable-menu::-webkit-scrollbar-track{
  border-radius: 6px;
  background-color: #f1f1f1;
}

.scrollable-menu::-webkit-scrollbar{
  width: 8px;
  background-color: #ffffff;
}

.scrollable-menu::-webkit-scrollbar-thumb{
  border-radius: 10px;
  background-color: #c1c1c1;
}

.scrollable-menu {
  height: auto;
  max-height: 200px;
  overflow-x: hidden;
}

.dropdown-item:active{
  background-color: #f2f2f2 !important;
  color: black !important;
}

a.powered-by-firepad {
  display: none;
}
  
#resize-wrapper{
  background-color:black;
  width: calc(90vw - 175px);
  margin: 0 0;
}

.ui-resizable-e { 
  cursor: e-resize; 
  width: 10px; 
  right: -5px; 
  top: 0; 
  bottom: 0; 
  background: #475068 url('media/black.png') center/2px 40px;
  background-repeat: no-repeat;
}

.ui-resizable {
  position: relative;
}

.ui-resizable-handle { 
  position: absolute;font-size: 0.1px; display: block;
}