<style>
* {
  box-sizing: border-box;
}

body {
  background-color: #536372;
  color: #fff;
  padding: 10px;
  font-family: 'Alef';font-size: 14px;
}

h2 {
  font-size: 26px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 18px;
}

/* HR Rounded border */
hr.rounded {
  border-top: 8px solid #bbb;
  border-radius: 5px;
  max-width: 30%;
  margin-left:0;
}

p.small {
  font-size: 12px;
}

p.big {
  font-size: 16px;
}

.err {
  font-size: 12px;
  color: red;
}

/* Create center column that floats */
.column {
  float: left;
  padding: 5px;
}

/* Clear floats after the column */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* make images better */
img {
  border-radius: 12px;
  max-width:100%;
  height: auto;
  display: block;
  border: 2px solid #021a41;
  background-color: #000;
}

/* table layout */
table {
  width:75%;
  table-layout: fixed;
  border:1px dashed #C0C0C0;
  border-collapse:collapse;
  padding:5px;
  background-color: #959595;
  color: #000;
  font-size: 18px;
}
td {
  border:1px dashed #C0C0C0;
  text-align:left;
  padding:5px;
}

/* Layout for tools section */
.tooltable {
  width:30%;
  border:1px solid #000;
  table-layout: fixed;
  border-collapse:collapse;
  padding:5px;
  background-color: #b5b5b5;
  color: #000;
  font-size: 18px;
}
.tooltd {
  border: 1px;
  border-bottom: 1px solid #000;
  text-align:left;
  padding:5px;
}
.tooltdHeader {
  background-color: #858585;
  border: 1px;
  border-bottom: 1px solid #000;
  text-align:left;
  padding:5px;
}

input {
  width: 70px;
  padding: 6px 10px;
  margin: 8px 0;
  box-sizing: border-box;
  text-size: 18px;
}

/* Set table width for mobile screens */
@media(max-width: 600px) {
  table {
    width: 100%;
  }
  .tooltable {
    width: 100%;
  }
}

input[type=button], input[type=submit], input[type=reset] {
  background-color: #757575;
  border-radius: 12px;
  border: none;
  color: white;
  width: 10%;
  padding: 8px 32px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
}

a.red:link {
  background-color: #757575;
  color: #e3e3e3;
  Padding:4px 9px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 12px;
  border: 2px solid #e3e3e3;
}

a.red:visited {
  background-color: #757575;
  color: #e3e3e3;
  padding: 4px 9px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 12px;
  border: 2px solid #e3e3e3;
}

a.red:hover {
  background-color: #757575;
  border: 2px solid #000;
}

a.red:active {
  background-color: #757575;
  border: 2px solid #000;
}

/* ##### BEGIN MENU ##### */

.navbar {
  overflow: hidden;
  background-color: #536372;
}

.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 10px 12px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 25px;
  cursor: pointer;
  border: none;
  outline: none;
  color: white;
  padding: 10px 12px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #627382;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ddd;
  min-width: 120px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 10px 12px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #8a8a8a;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* ##### END MENU ##### */

</style>
