/* Drop button menu start */

.dropbtn {
  background-color: #2fa4e7;
  color: white;
  padding: 15px;
  font-size: 16px;
  border: none;
  min-width: 80px;
  height: 100%;
  vertical-align: middle;
}
.dropbtn:hover {
  background-color: #178acc;
}

.menuBarSideText {
  background-color: #2fa4e7;
  color: white;
  padding: 15px;
  font-size: 24px;
  border: none;
  min-width: 80px;
  height: 100%;
  vertical-align: bottom;
  display: inline-block;
}
.menuBarSideText:hover {
  background-color: #178acc;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown:hover .dropdown-content {display: block;}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Items on the drop menu */
.menuItem {
  border: none;
  background-color:#fff;
  color: black;
  padding: 10px 32px;
  text-align: left; 
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  min-width: 200px;
  cursor: default;
}
.menuItem:hover {
  background-color: #ddd;
}

.menuspacer {
  background-color:#ddd;
  padding: 1px 0px 0px 0px; /* top right bottom left */
  display: inline-block;
  min-width: 200px;
  cursor: default;
}
.menuspacerside {
  background-color:#fff;
  padding: 2px 0px 0px 0px; /* top right bottom left */
  display: inline-block;
  min-width: 200px;
  cursor: default;
}

button:focus {
  outline:0;
}

/* Drop button menu end */

header {
  background-color: #2fa4e7;
  height: 60px;
  text-align: left;
  padding-left: 80px;
  padding-right: 80px;
  vertical-align: middle;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5;
}

body {
  margin-left: 0;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #555;
}

a {
  text-decoration: none;
  color: #2fa4e7;
}

/* needed! https://www.w3schools.com/html/html_layout.asp */
* {
  box-sizing: border-box;
}

h1 {
  color: #444444;
  font-size: 54px;
  margin: 20px 0px 10px;
}
h2 {
  color: #444444;
  font-size: 30px;
  margin: 20px 0px 10px;
}
h3 {
  color: #444444;
  font-size: 24px;
  margin: 20px 0px 20px;
}

p {
  margin: 10px 0px 30px 0px;
}

/* the left menu area here */
nav {
  float: left;
  width: 25%;
  background: #ffffff;
  position: fixed;
  top: 60px;
  padding: 20px 20px 20px 20px; /* top right bottom left */
}

/* the list inside the left menu */
nav ul {
  list-style-type: none;
  font-size: 16px;
  padding: 20px 0px 20px 0px; /* top right bottom left */
  background-color: #F5F5F5;
  border-style: solid;
  border-color: #E3E3E3;
}
nav li {
  line-height: 15px;
  padding: 10px 20px 10px 20px; /* top right bottom left */
  background-color: #F5F5F5;
  color: #2fa4e7;
}
nav li:hover {
  background-color: #EEEEEE;
}
.indent1 {
  padding: 10px 20px 10px 40px; /* top right bottom left */
}
.indent2 {
  padding: 10px 20px 10px 60px; /* top right bottom left */
}

/* the content here */
article {
  background-color: #ffffff;
  position: absolute;
  left: 25%;
  right: 0;
  top: 60px;
  overflow-y: auto;
  bottom: 0;
  padding: 15px 50px 0px 20px; /* top right bottom left */
}

/* Clear floats after the columns - make footer seperate */
section:after {
  content: "";
  display: table;
  clear: both;
}

/* this is the bar along the bottom */
.bottomcopy {
  padding: 20px 60px 50px 60px; /* top right bottom left */
  margin: 0;
  margin-top: 40px;
  text-align: right;
  border-top: 1px solid #aaaaaa;
  clear: both;
}
.bottomcopy:before {
  content: "\00a9  Zhorn Software 2025";
}

/* blue box outs */
.note {
  padding: 10px 10px 10px 10px; /* top right bottom left */
  border-style: solid;
  border-color: #bce8f1;
  color: #3a87ad;
  background-color: #d9edf7;
}
.noteheading {
  font-weight: bold;
}

/* code */
.codebox {
  padding: 10px 10px 10px 10px; /* top right bottom left */
  border: solid 1px #e1e4e5;
  font-family: monospace, serif;
  margin: 10px 10px 25px 10px; /* top right bottom left */
  white-space: pre;
}

/* api */
.zcommand {
  font-family: monospace, serif;
  font-size: 20px;
  font-weight: bold;
  border: 1px;
  border-style: solid none none none;
  border-color: #DDD;
  display: block;
  padding: 15px 0px 0px 0px;
  margin-bottom: 0px;
  color: #1E7B1E;
}

.zcommandnotes {
  font-size: 12px;
  margin-top: 5px;
  font-style: italic;
}

.zevent {
  font-family: monospace, serif;
  font-size: 20px;
  font-weight: bold;
  border: 1px;
  border-style: solid none none none;
  border-color: #DDD;
  display: block;
  padding: 15px 0px 0px 0px;
  margin-bottom: 0px;
  color: #00008C;
}

.zeventnotes {
  font-size: 12px;
  margin-top: 5px;
  font-style: italic;
}

.versionheading {
  font-size: 25px;
  color: #1E7B1E;
}

pre {
  color: #333;
  background-color: #f8f8f8;
  margin: 0px;
  padding: 6px;
}

code {
  padding: 2px 5px;
  background: #fff;
  border: solid 1px #e1e4e5;
  color: #333;
  white-space: pre-wrap;
  word-wrap: break-word;
  border-radius: 4px;
  line-height: 22px;
}

.images {
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin: 5px 2px 10px 2px; /* top right bottom left */
}

li {
  padding: 2px 0px 2px 0px; /* top right bottom left */
  line-height: 1.4;
}

.versionheading {
  font-weight: bold;
}

.downloadbar {
  display: inline-block;
  width: 100%;
  padding: 0px 0px 20px 0px; /* top right bottom left */
}
.download {
  float: left;
  color: #ffffff;
  border-radius: 5px;
  width: 300px;
  text-align: center;
  padding: 15px 0px 15px 30px; /* top right bottom left */
  font-weight: bold;
  background: #13BB15 url('/images/download.png') no-repeat;
  background-size: 32px 32px;
  background-position: 30px 16px;
}
.download:hover {
  background: #0B6B0B url('/images/download.png') no-repeat;
  background-size: 32px 32px;
  background-position: 30px 16px;
}
.downloadinner {
  font-weight: normal;
  font-size: 80%;
  color: #C7F9D1;
}

.advert {
  margin: 20px;
  margin-bottom: 30px;
  height: 120px;
  width: 600px;
}

.advertimage {
  padding: 0px 20px 0px 0px; /* top right bottom left */
  max-height: 100%;
  float: left;
}

.adverttextarea {
  padding: 5px 20px 5px 0px; /* top right bottom left */
}

.adverttextheading {
  font-weight: bold;
  font-size: 170%;
  padding: 10px 20px 0px 0px; /* top right bottom left */
  margin: 0px;
}

.adverttextcopy {
  color: black;
  margin: 0px;
  padding: 5px 20px 0px 0px; /* top right bottom left */
}

input[type=text], select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type=submit] {
  width: 100%;
  background-color: #F1F1F1;
  color: #444444;
  padding: 14px 20px;
  margin: 8px 0;
  border: 1px solid #ffffff;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  border: 1px solid #dddddd;
}

/* skins images */
.container {
  position: relative;
  width: 100%;
  background-color: black;
}

.containerImage {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .2s ease;
  backface-visibility: hidden;
}

.containerTop {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
}

.containerBottom {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  bottom: -1px;
  left: 0px;
  width: 100%;
}

/*.container:hover .containerImage {
  opacity: 0.8;
}*/

.container:hover .containerBottom {
  opacity: 0.7;
}

.container:hover .containerTop {
  opacity: 0.7;
}

.containerText {
  background-color: #000000;
  opacity: 1;
  color: white;
  font-size: 16px;
  padding: 8px 16px; /* top right bottom left */
}

/* skin menu bar */
.skinmenu {
  width: 100%;
  background-color: 2fa4e7;
  color: white;
  padding: 8px 32px 8px 32px; /* top right bottom left */
  margin-top: 16px;
  /*margin-bottom: 32px;*/
  text-align: center;
}
.skinmenuitem {
  padding: 8px 24px 8px 24px; /* top right bottom left */
  height: 100%;
  text-decoration: none;
  color: white;
}
.skinmenuitem:hover {
  background-color: 178acc;
}
.skinmenupage {
  padding: 8px 16px 8px 16px; /* top right bottom left */
  height: 100%;
  text-decoration: none;
  color: white;
}
.skinmenupage:hover {
  background-color: 178acc;
}
.skinmenupageselected {
  padding: 8px 16px 8px 16px; /* top right bottom left */
  height: 100%;
  text-decoration: none;
  color: white;
  border: 5px solid lightgray;
}

.skinshowdetails {
  background-color: #F5F5F5;
  width: 100%;
  padding: 20px;
  line-height: 24px;
}

table.skintable {
  border-spacing: 0px;
  text-align: left;
  font-size: 12px;
  border-collapse: collapse;
}
table.skintable tr:nth-child(odd) {
  background-color: #f2f2f2;
}
table.skintable tr:hover {
  background-color: #e0e0e0;
}
table.skintable td {
  border-bottom: 1px solid #ddd;
  padding: 8px;
}
table.skintable th {
  background-color: #f2f2f2;
  padding: 8px;
}



