.fieldbox{
  border: 1px solid grey;
  font-size: 12px;
  padding: 3px;
}

#decision_box{
  border: 1px solid black;
  padding:10px;
}

.errormessage {
  color:red;
}

#fname
{
   width:100%;
}

#hrline {
  height:2px;
  color:gray;
  background-color:gray;
}

.btn {
  text-decoration: none;
  height:40px;
  padding-top:10px;
}


.navigation-header {
  padding: 0px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav {
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container > a {
  color: black;
  text-decoration: none;
  font-weight: 700;
  font-size: 26px;
}

.navigation-items {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}

.navigation-items > a {
  color: black;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: .4s ease-in-out;
}

.navigation-items > a:hover {
  background:  #FFC300 ;
}

.hamburger {
  display: none;
  font-size: 20px;
  font-weight: 800;
  color: black;
}

@media screen and (max-width:50em) {
  .hamburger {
    display: flex;
    cursor: pointer;
  }
  .hamburger #closeHam {
    display: none;
  }
  .navigation-items {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    right: 0;
    top: 40px;
    background-color: #ffdb4d;
    width: auto;
    padding: 10px 30px 10px 15px;
  }
}

.container {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: minmax(1em, auto) minmax(1em, 40em) minmax(1em, auto);
  grid-template-rows: 40px minmax(100vh, auto) 40px;
  grid-template-areas:
  "nav           nav       nav"
  "left_sidebar  content   right_sidebar"
  "footer        footer    footer"
}

*, body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

p {
    padding-bottom:20px;
}

h4 {
    padding-top:20px;
}

ul {
    padding-left:20px;
}

.footer {
  grid-area: footer;
}


.content {
  grid-area: content;
}

.navbar {
  grid-area: nav;
  background:  #ffdb4d;
}

.button {
  text-decoration: none;
  display: inline-block;
  padding: -10px;
  margin: 1px; 
  color: black;
}

a:hover {
  background-color: #e6e6e6;
  color: black;
}

.previous {
  background-color: #f1f1f1;
  color: black;
}

.next {
  background-color: white;
  color: black;
  margin-right: 10px;
}


