.table-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.section-title {
  color: #c7a152;
  font-weight: 700;
  font-size: 2.0rem;
  margin-bottom: 6px;
  letter-spacing: 0.8px;
  text-align: center;
  margin-top: 100px;
}

.table-card:hover {
  transform: scale(1.02);
}

.table-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.table-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.55);
  padding: 10px 15px;
  color: white;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}

.table-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.table-lightbox.show {
  visibility: visible;
  opacity: 1;
}

.tl-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tl-body {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  z-index: 3100;
}

.tl-slide {
  position: relative;
  width: 100%;
  height: auto;
}

.tl-image {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
  animation: zoomIn 0.3s ease;
}

.tl-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  color: #333;
  font-size: 28px;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
  z-index: 3200;
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
