/* CSS Document */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; 
}

.lightbox-image {
  max-width: 80%;
  max-height: 80%;
}

.close-btn {
  font-size: 1.6rem;
  font-weight: 750;
  color: #f80;
  position: fixed;
  top: 22%;
  right: 80px;
  background-color: #4500EF;
  border: none;
  padding: 10px 15px;
  border-radius: 20%;
  cursor: pointer;
}

.close-btn:hover {
  color: red;
}

.close-btnA { /* don't need this */
  font-size: 1.6rem;
  font-weight: 750;
  color: #f80;
  position: fixed;
  top: 20%;
  right: 30%;
  background-color: #4500EF;
  border: none;
  padding: 10px 15px;
  border-radius: 20%;
  cursor: pointer;
}


/* Media query for screens smaller than 768px */
@media (max-width: 768px) {
  .close-btn, .lightbox-nav.next {
    right: 10px; 
  }
}

@media (min-width: 769px) {
  .close-btn, .lightbox-nav.next {
    right: 18%; 
  }
}

/* Media query for screens smaller than 768px */
@media (max-width: 768px) {
  .lightbox-nav.prev {
    left: 10px; 
  }
}

@media (min-width: 769px) {
  .lightbox-nav.prev {
    left: 18%; 
  }
}


/* Light box nav*/

.lightbox-nav {
  position: absolute;
  top: 50%;
  background-color: #4500EF;
  color: #f80;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 8px 15px;
  z-index: 1000;
  border-radius: 20%;
}

.lightbox-nav:hover {
  color: aqua;
}

/* Light box nav end*/

.thumbnail:hover {
  cursor: pointer;
}

.fixed-left, .fixed-right {
  position: fixed;
  top: 50px; 
  bottom: 0;
  height: calc(100vh - 50px);
  z-index: 1000;
  background: #080320; 
}

.fixed-left {
  left: 0;
  width: 10%;
}

.fixed-right {
  right: 0;
  width: 10%;
}

/* prevent overlap with fixed columns */
.colum1 {
  padding-bottom: 2.53%;
  z-index: 1; /* Ensure it is below the header and above the fixed columns */
}


/* Header adjustments */
header.bder {
  position: sticky;
  width: 100%;
  top: 0;
  background-color: #080320;
  padding-top: 0.3%;
  padding-left: 0.6%;
  border-bottom: 10px solid;
  padding-bottom: 0.2%;
  border-image-slice: 1;
  border-width: 6px;
  border-image-source: linear-gradient(to left, #00f2ff, #5100ff);
  z-index: 1001; /* Ensure it is above the fixed columns */
}

/* Footer */
footer {
  z-index: 1001; 
  background: #fff;
}

td {
  padding-left: 20px;
  padding-top: 20px;
  padding-bottom: 10px;
}

/* Media query for screens smaller than 768px */
@media (max-width: 768px) {
  .fixed-left, .fixed-right {
    display: none;
  }

  .colum1 {
    margin-left: 0;
    margin-right: 0;
    padding-left: 10px;
    padding-right: 10px;
	
  }
}

/* Media query for screens larger than 768px */
@media (min-width: 769px) {
  .fixed-left, .fixed-right {
    display: block;
  }

  .colum1 {
    margin-left: 10%;
    margin-right: 10%;
  }
}


.topbutton1 {
	text-align: center;
	font-size: 14pt;
	font: bold;
	background-color: #080320;
	border-radius: 10px;
	color: #f80;
    text-shadow: 0 0 0.55em #f80;
	border-color: #f80;
	margin-bottom: 12px;
	margin-left: 5px; 
}

.topbutton1:hover {
	color: #fc03e8;
}
