body { 
	color: #4D93AC; 
	background: url(https://cbra.systems/map/Cinema/room-1-bg.png) repeat fixed center; 
	-webkit-background-size: cover; 
	-moz-background-size: cover; 
	-o-background-size: cover; 
	background-size: cover; 
}

.logo {
  position: absolute;
  left: 416px;
  top: 10px;
  z-index: 0;
}

.center {
  position: absolute;
  left: 164px;
  top: 6px;
  width: 350px;
  height: 163px;
}

#ytThumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  padding: 20px;
  max-width: 100%;
  justify-content: center;
}

.yt-thumbnail {
  text-align: center;
  background: #181818;
  padding: 10px;
  border-radius: 8px;
  transition: transform 0.2s ease-in-out;
}

.yt-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

.yt-thumbnail:hover {
  transform: scale(1.05);
}

.yt-thumbnail p {
  color: white;
  font-size: 14px;
  margin-top: 5px;
}

/* Pagination Buttons */
.pagination {
  text-align: center;
  margin-top: 20px;
}

.nav-btn {
  background: #ff4500;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease-in-out;
  display: none; /* Initially hidden */
}

.nav-btn:hover {
  background: #ff2200;
}

@media (max-width: 768px) {
  #ytThumbs {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); 
  }

  .nav-btn {
    font-size: 14px;
    padding: 8px 15px;
  }
}