.layout {
  width: 100%;

  display: grid;
  grid:
    "header header header" auto
    "leftSide body rightSide" 1fr
    "footer footer footer" auto
    / auto 1fr auto;
  gap: 8px;
}

.header { grid-area: header; }
.leftSide { grid-area: leftSide; }
.body { grid-area: body; }
.rightSide { grid-area: rightSide; }
.footer { grid-area: footer; }

.tblLeft {
	width: 270px; 
	max-width: 270px; 
	table-layout:fixed;

}
.tblRight {
	width: 270px; 
	max-width: 270px; 
	table-layout:fixed;
	

}
td {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 20px;
  padding-right: 10px;
  line-height: 1.3;
}
th {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 20px;
  padding-right: 10px;
  background-color: #262626;
}
body {
  margin: 9px;
}
.tdPosting {
	background-color: #262626;
	font-size: 13px;
}
a:link {
  color: grey;
}
a:visited {
  color: #a5c300;
}
a:focus {
  text-decoration: none;
  background: #bae498;
}
a:hover {
  text-decoration: none;
  background: #cdfeaa;
}
a:active {
  color: #cdfeaa;
}

.fpTable {

}
.fpTh {

}
.postform {
    width: 500px;
    margin: 20px auto;
    padding: 20px;
    background-color: #0d0d0d;
    border: 1px solid #262626;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.posttextarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.commentform {
    width: 40%;
    margin: 20px auto;
    padding: 20px;
    background-color: #4d4d4d;
    border: 1px solid #262626;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.commenttextarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

label {
    display: block;
    margin: 10px 0;
}

input[type='checkbox'] {
    margin: 5px;
}


button[type='submit'] {
    width: 100%;
    height: 40px;
    background-color: #333333;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

button[type='submit']:hover {
    background-color: #3e8e41;
}

.image-container {
        width: 400px;
        height: 300px;
        overflow: hidden;
        position: relative;
}

.image-container img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 100%;
        max-height: 100%;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
	border: 5px solid #333333;
	padding: 20px;
	border-radius: 15px;
}

.modal-content img {
    width: 100%;
    height: auto;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.comment {
  padding-top: 1px;
  padding-bottom: 1px;
  padding-left: 3px;
  padding-right: 3px;
  background-color: #0d0d0d;
  font-size: 13px;
}	

.highlight {
    background-color: #f0f0f0; /* Light gray background */
    border: 1px solid #ccc; /* Light gray border */
}