.topBar {
  width: inherit;
  grid-area: topPart;
  background-color: lightblue;
  text-align: center;
  vertical-align: middle;
  font-size: x-large;
}

  .topBar:before {
    content: "" var(--boardTitle);
  }

.leftBar {
  grid-area: leftPart;
  background-color: lightblue;
  writing-mode: horizontal-tb;
  vertical-align: middle;
  border: 1em solid lightblue;
  text-align: right;
  font-size: x-large;
  /*
      margin-left: 10px;
      padding-left: 14px;
      padding-right: 14px;
      margin-right:10px
      padding-left: 10px;
      padding-right: 10px;
      margin-left: 10px;
      margin-right: 10px;
  */
}

  .leftBar:before {
    content: " " var(--boardTitle) "";
  }


.rightBar {
  grid-area: rightPart;
  background-color: lightblue;
  writing-mode: horizontal-tb;
  vertical-align: middle;
  border: 1em solid lightblue;
  text-align: left;
  font-size: x-large;
  /*
      padding-left: 14px;
      padding-right: 14px;
      margin-left: 10px;
      margin-right: 10px;
      margin-left: 10px;
  */
}
  .rightBar:before {
    content: " " var(--boardTitle) "";
  }

.footBar {
  width: inherit;
  grid-area: footPart;
  background-color: lightblue;
  text-align: center;
  font-size: x-large;
  vertical-align: middle;
}
  .footBar:before {
    content: " " var(--boardTitle) "";
  }

.actionCenter {
  width:inherit;
  grid-area: main;
  background-color: white;
 }

.gridContainer {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-areas:
    'topPart topPart topPart'
    'leftPart main rightPart'
    'leftPart footPart rightPart';
  gap: 0px;
  background-color: white;
  /* #2196F3; */
  padding: 01px;
  grid-template-columns: 50px auto 50px;
  grid-template-rows: 3em auto 3em;
}

.boardHeader {
  /*
  background-color:red;
*/
  font-size: xx-large;
  font-weight:bolder;
  color: #004080;
  text-align: center;
}

.boardDescription {
  font-size: large;
  font-weight: bold;
  color: #004080;
  text-align: center;
}
/*
  .boardDescription .textButton {
    width: -moz-fit-content;
    width: fit-content;
  }
*/

.entryHeaders {
  font-weight:bold;
}

.entryTable {
  background-color: #ECECEC;
  border-top: 1px solid #ABB0BA;
  border-bottom: 1px solid #ABB0BA;
  width: 97%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

  .entryTable > tbody > tr > td {
    font-family: Arial;
    font-size: large;
    margin:5px;
    color:black;
    vertical-align:top;
  }

  .entryTable > tbody > tr > th {
    font-family: Arial;
    font-size: large;
  }

  .entryTable > tbody > tr {
    margin: 0px;
  }

  .entryTable .textButton {
    width: -moz-fit-content;
    width: fit-content;
  }

.entryTable .signature {
  font-family: 'Script MT', cursive;
  color:blue;
}

.inputTable {
  background-color: #ECECEC;
  border-top: 1px solid #ABB0BA;
  border-bottom: 1px solid #ABB0BA;
  width: 97%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

  .inputTable > tbody > tr > td {
    font-family: Arial;
    font-size: medium;
    font-size: large;
  }

  .inputTable > tbody > tr > th {
    font-family: Arial;
    font-size: large;
  }

.textButtonxx {
  background-color: lightblue;
  font-family: Arial;
  font-size: large;
  font-weight: bold;
  text-decoration: none;
  border: 3px solid red;
}

.textButton {
  background-color: lightblue;
  border: 3px solid red;
  font-family: Arial;
  font-size: large;
  font-weight: bold;
  border-radius: 100px;
  padding: 6px 20px;
  vertical-align: top;
  color: black;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  /*
  width:100%;
  padding:5px;
  margin:3px;
  */
}

.textButton:hover {
  cursor:pointer;
}

  [bname]::before {
  content: attr(bname) "";
}

.boardForm {
  background-color:white;
}

  .boardForm > label {
    font-family: Arial;
    font-weight: bold;
    vertical-align: top;
    color: blue;
    /*
  border:2px solid red;
*/
  }

/* In order to make sure the text is within boundaries, 
  word-break and white-space are necessary
*/
.entryText {
  width: inherit;
  font-family: Arial;
  font-size: medium;
  font-weight: bold;
  word-break: break-word;
  white-space: normal;
}
/* This is the section for popups in boards */
.form-popup {
  display: none;
  position: absolute;
  width: 700px;
  border: 10px solid blue;
  z-index: 100;
  background-color: white;
}

  .form-popup > p {
    text-align: center;
    font-weight:bold;
  }

.form-container {
  width: 660px;
  padding: 10px;
  background-color: white;
}

  .form-container > input, textarea {
    margin: 5px;
  }

  .form-container > label {
    font-family:Arial;
    font-weight:bold;
  }


  /* Set a style for the submit/login button */
  .form-container .textButton {
    background-color: #04AA6D;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: -moz-fit-content;
    width: fit-content;
    /*
                display:  flow;
                width: 100%;
                */
    margin-bottom: 10px;
    opacity: 0.8;
  }

  /* Add a red background color to the cancel button */
  .form-container .cancel {
    background-color: red;
  }

  /* Add some hover effects to buttons */
  .form-container .textButton:hover, .open-button:hover {
    opacity: 1;
  }

.entryDiv {
  margin-left: 20px;
  margin-right: 20px;
}

.entryDiv .signature {
  font-family: 'Script MT', cursive;
  color: blue;
}

/* Create two unequal columns that floats next to each other */
.column {
  float: left;
  padding: 10px;
}

.left {
  width: 50%;
}

.right {
  width: 50%;
}

/* Clear floats after the columns */
.boardRow:after {
  content: "";
  display: table;
  clear: both;
}

* {
  box-sizing: border-box;
}