/* general */
html {
  height: 100%;
  margin-bottom: 1px;
}

input, label {
  display:block;
}

body {
	margin: 0px 0px 0px 0px;
	padding:10px;
	height: 100%;
	min-height: 100%
	font-family: verdana,helvetica,arial,sans-serif;
	font-size: 18px;
  display: grid;
  grid-template-rows: 1px auto;
}

a:link, a:visited {
	text-decoration: none;
	font-weight: bold;
	color: #1f40dc;
	/*padding: 15px;*/
}

a:hover {
	text-decoration: underline;
}

.button {
  background-color: #354350; /* Blue grey */
  border-radius: 8px;
  border: none;
  color: white;
  padding: 10px 10px;
  width: 200px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
}

.button_shadow {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

p {
  margin-top: 0;
  margin-bottom: 15px;
  text-align: left;
}

h1, h2, h3, h4, h5 {
	font-weight: bold;
	padding: 10px 0px 0px 10px;
}

h2 {
  font-size: 22px;
}

h3 {
	font-size: 20px;
	line-height: 1.1em;
	margin-bottom: 5px;
}

hr {
  background: #354350;
}

/*ul {
  list-style-image: url('../images/rv_icon.png');
}*/

table {
  border-color: #354350;
}

tr, td, th {
  border-color: #354350;
  padding: 5px 5px 5px 5px;
}

.bold_red {
  color: Red;
  font-weight: bold;
}

.hr_thick_grey {
  height: 30px;
  background-color: #8E818B;
  border: none;
}

.hr_thick_blue_grey {
  height: 30px;
  background-color: #354350;
  border: none;
}

.hr_thin_blue_grey {
  height: 15px;
  background-color: #354350;
  border: none;
}

/** disguise a button to look like a link **/
.buttonToLink{
   background: none;
   border: none;
   color: red
}

.label-top{
    display: block;
    height: 22px;
    line-height: 22px;
    vertical-align: middle;
}

/** grid stuff **/

* {
  box-sizing: border-box;
}

.container {
  display: grid;
  grid-template-areas:
    "header header"
    "menu content"
    "footer footer";
  grid-template-columns: minmax(250px,1fr) 4fr;
  gap: 5px;
  /*background-color: #2196F3; /* will show up as the border color if other divs are a different color */
  padding: 5px;
}

.container > div {
  /*background-color: #123456;*/
  padding: 10px;
}

.container > div.header {
  grid-area: header;
  text-align: center;
  /*background-color: #ffffff;*/
}

.container > div.menu {
  grid-area: menu;
  text-align: right;
  /*background-color: #fcfcfc;*/
}

.container > div.content {
  grid-area: content;
  border-left: thick solid #354350;
}

.container > div.footer {
  grid-area: footer;
  text-align: center;
}