@charset 'UTF-8';

html,
body {
  position: relative;
  width: 100%;
  height: 100%;
}

body {
  background-color: white;
  font-family: Muli;
  font-size: 24px;
  float: left;
  box-sizing: border-box;
}

a {
  color: rgb(0, 100, 200);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:visited {
  color: rgb(0, 80, 160);
}

label {
  display: block;
}

input:disabled {
  color: #ccc;
}

button {
  color: #333;
  background-color: #f4f4f4;
  outline: none;
}

button:disabled {
  color: #999;
}

button:not(:disabled):active {
  background-color: #ddd;
}

button:focus {
  border-color: #666;
}

.line {
  float: left;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%
}

#display {
  margin: 15px;
  padding: 10px;
  font-size: 13px;
  background-color: InfoBackground;
  border-radius: 5px;
  padding: 10px;
  float: left;
  width: 100%;
  display: none;
}

.styled {
  font-size: 16px;
  border-radius: 5px;
  border-width: 1px;
  padding: 3px;
  margin-top: -4px;
  margin-right: 5px;
  margin-bottom: 5px;
  float: left;
}

.error {
  color: red;
}

.success {
  color: green;
}

.saveCancelButton {
  float: right !important;
  margin-bottom: 10px !important;
  margin-right: -10px;
  width: 80px;
  border-radius: 5px;
  text-align: center;
  padding: 5px;
  font-size: 14px;
  background-color: #DCDCDC;
  cursor: pointer;
  white-space: nowrap;
}

.saveCancelButton:hover {
  background-color: #ADD8E6;
  color: #FF4500;
}

.floatLeft {
  float: left;
}

.floatRight {
  float: right;
}

.hidden {
  display: none;
}

#interpretationContainers {
  float: left;
  height: 1280px;
  width: 3840px;
  background-color: black;
  border-radius: 5px;
  padding: 10px;
}
.dragHandle {
  float: left;
  width: 15px;
  height: 15px;
  border-radius: 7px;
  cursor: pointer;
  background-color: white;
  border: 1px solid red;
  margin-left: -15px;
  margin-top: -15px;
}