body {
  font-family: 'Ubuntu Mono';
  margin: 0;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 14px;
  background-color: gray;
  padding: 10px;
  font-size: 14px;
}
main {
  margin-top: 34px;
  margin-bottom: 34px;
  padding: 5px 10px;
}
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 14px;
  background-color: gray;
  text-align: center;
  padding: 10px;
  font-size: 14px;
}
nav {
  position: fixed;
  top: 34px;
  left: 0;
  padding: 0px;
  height: calc(100% - 68px);
  width: 0px;
  z-index: 1;
  overflow-x: hidden;
  transition: 0.5s;
}
#dugme_sadrzaj {
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  z-index: 1;
  font-size: 30px;
  padding-left: 5px;
  cursor: pointer;
}
#dugme_terminal {
  position: fixed;
  top: 0;
  right: 0;
  width: 30px;
  height: 34px;
  z-index: 1;
  font-size: 25px;
  padding-right: 5px;
  cursor: pointer;
}
#terminal {
  position: fixed;
  top: 34px;
  right: -2px;
  border: 1px solid black;
  height: calc(100% - 70px);
  width: 0px;
  background: none;
  z-index: 1;
  overflow: auto;
  transition: 0.5s;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
#terminal::-webkit-scrollbar {
  display: none;
}
.terminal_komanda_div {
  position: fixed;
  height: calc(50% - 35px);
  z-index: 1;
  overflow: auto;
  transition: 0.5s;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.terminal_komanda_div textarea {
  position: fixed;
  top: 64px;
  border: none;
  margin: 0;
  padding: 5px;
  width: 490px;
  height: calc(50% - 105px);
  resize: none;
}
.terminal_komanda_div::-webkit-scrollbar, .terminal_komanda_div textarea::-webkit-scrollbar {
  display: none;
}
#terminal_php_komanda_div, #terminal_xml_komanda_div {
  display: none;
}
#terminal_js_komanda_div textarea {
  background-color: #DAD6AF;
}
#terminal_php_komanda_div textarea {
  background-color: #B9BBC6;
}
#terminal_xml_komanda_div textarea {
  background-color: #DCBAB0;
}
#result {
  display: none;
  margin-top: 30px;
  padding: 5px;
  width: 490px;
  height: calc(50% - 105px);
  background-color: white;
}
.terminal_komanda_dugme {
  position: absolute;
  width: 125px;
  height: 20px;
  z-index: 6;
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 5px 0;
  cursor: pointer;
  user-select: none;
}
#terminal_js {
  background-color: #F7DF1E;
}
#terminal_js:hover {
  background-color: #F9E962;
}
#terminal_php {
  background-color: #4F5B93;
  margin-left: 125px;
}
#terminal_php:hover {
  background-color: #727CA9;
}
#terminal_xml {
  background-color: #FF5722;
  margin-left: 250px;
}
#terminal_xml:hover {
  background-color: #FF794E;
}
#terminal_result {
  background-color: #1769AA;
  margin-left: 375px;
}
#terminal_result:hover {
  background-color: #2196F3;
}
#terminal_exe {
  position: fixed;
  width: 500px;
  height: 20px;
  top: calc(50% - 30px);
  z-index: 5;
  background-color: darkgreen;
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 5px 0;
  cursor: pointer;
  user-select: none;
}
#terminal_exe:hover {
  background-color: green;
}
#terminal_background {
  opacity: 70%;
  position: fixed;
  top: 50%;
  background-color: black;
  width: 500px;
  height: calc(50% - 35px);
  z-index: -1;
}
#terminal_log {
  position: fixed;
  top: 50%;
  padding: 5px 10px;
  width: 480px;
  height: calc(50% - 45px);
  overflow: auto;
  z-index: 1;
}
.terminal_naziv {
  color: green;
  font-weight: bold;
  margin-right: 10px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.terminal_zapis {
  color: white;
}
#sadrzaj {
  max-width: 500px;
  background-color: gray;
}
#sadrzaj ul  {
  list-style-type: none;
  margin: 0;
  padding: 5px 10px;
}
.sadrzaj_naslov {
  padding: 5px 10px;
  cursor: pointer;
  background-color: gray;
}
.sadrzaj_naslov:hover {
  background-color: lightgray;
  color: black;
}
#sadrzaj li {
  padding: 5px 10px;
  cursor: pointer;
}
#sadrzaj li:hover {
  background-color: lightgray;
}
.blink {
  animation-name: blink;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
}
@keyframes blink {
  0%{ color: white; }
  49%{ color: white; }
  60%{ color: transparent; }
  99%{ color:transparent; }
  100%{ color: white; }
}
abbr {
  cursor: help;
}
details {
  margin-bottom: 5px;
}
summary {
  background-color: lightgray;
  padding: 5px;
}
summary:hover {
  background-color: gray;
  color: white;
  font-weight: bold;
  cursor: pointer;
}
table {
  border-collapse: collapse;
}
thead {
  background-color: lightgray;
}
td {
  padding: 4px 8px;
  border-bottom: 1px solid lightgray;
}
dt {
  font-weight: bold;
}
hr {
  color: #3d7e9a;
}
a:link, a:visited {
  color: blue;
  text-decoration: none;
}
a:hover, a:active {
  background-color: lightgray;
}
code {
  font-family: Consolas,"courier new";
  color: crimson;
}
pre {
  max-height: 300px;
  width: 800px;
  overflow: auto;
  background-color: lightgray;
  padding: 8px;
  border: 1px solid gray;
  font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;
  white-space: pre-line;
}
pre img {
  width: 40px;
  max-height: 30px;
  float: right;
  user-select: none;
}
samp {
  display: inline-block;
  max-height: 300px;
  width: 800px;
  overflow: auto;
  padding: 8px;
  border: 1px solid gray;
}
mark {
  background-color: lightgray;
  padding: 0px 4px;
}
i.icon-warning-sign {
  background-image: url(data/warning.svg);
  background-size: 16px;
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: text-bottom;
}
.warning {
  background-color: #ffe7e8;
  border-left: 5px solid #e66465;
  padding: 8px;
  max-width: 797px;
  margin: 5px 0px;
}
.note {
  background-color: #fff3d4;
  border-left: 5px solid #f6b73c;
  padding: 8px;
  max-width: 797px;
  margin: 8px 0px;
}
.info {
  background-color: #e4f0f5;
  border-left: 5px solid #3d7e9a;
  padding: 8px;
  max-width: 797px;
  margin: 8px 0px;
}
.syntax {
  background-color: #eee;
  border-left: 5px solid #3d7e9a;
  padding: 8px;
  max-width: 797px;
  margin: 8px 0px;
}
.warning_sign {
  width: 14px;
  height: 14px;
  margin-bottom: -2px;
}
