body {
  margin: 0;
  background-color: #000;
  color: #e58513;
  font-family: 'Space Mono', monospace;
}
.gallery-container {
    padding: 20px;
}

.folder-title {
    margin: 30px 0 10px;
    color: #e58513;
    font-size: 24px;
    text-shadow: 0 0 8px #646464;
}

.thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.thumb-wrapper {
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.thumb-wrapper img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumb-wrapper:hover img {
    transform: scale(1.06);
    border-left: 2px dashed #646464;
    border-right: 2px dashed #646464;
}

.thumb-label {
    margin-top: 5px;
    color: #e58513;
    font-size: 18px;
    text-shadow: 0 0 8px #646464;
    text-align: center;
    word-break: break-word;
}

.hrdraft {
    border: none;
    border-top: 2px dashed #e58513;
    margin: 40px 0;
}

.hrfinal {
    border: none;
    border-top: 2px dashed #646464;
    margin: 40px 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(100, 100, 100, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    cursor: zoom-out;
    overflow: hidden;
}

.overlay.visible {
    display: flex;
}

.overlay img.fullscreen-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
    position: relative;
    z-index: 1;
}

.close-icon {
    position: fixed;
    top: 0px;
    right: 0px;
    font-size: 32px;
    font-weight: bold;
    color: #e58513;
    text-shadow: 0 0 8px #646464;
    cursor: pointer;
    z-index: 1300;
    background-color: #000;
    padding-left: 16px;
    padding-right: 16px;
}

.magnifier {
    position: fixed;
    width: 400px;
    height: 300px;
    border: 2px solid #000000;
    display: none;
    overflow: hidden;
    pointer-events: none;
    z-index: 1200;
    background: #000;
    box-shadow: 0 0 10px #e58513;
}

.magnifier img {
    position: absolute;
    top: 0;
    left: 0;
    user-select: none;
    pointer-events: none;
}

.intro-text {
    font-size: 20px;
    color: #e58513;
    line-height: 1.6;
    text-shadow: 0 0 8px #646464;
    margin-bottom: 20px;
}

a {
    color: #646464;
}

.intro-divider {
  border: none;
  border-top: 2px dashed #646464;
  margin: 20px 0 40px;
}

.nav-button {
  position: fixed;
  bottom: 0px; /* Pushes to bottom */
  transform: none;
  font-size: 36px;
  background-color: rgba(0, 0, 0);
  border: none;
  color: #e58513;
  cursor: pointer;
  padding: 10px 20px;
  z-index: 1300;
  user-select: none;
  text-shadow: 0 0 8px #646464;
}

.prev-button {
  left: 0px;
}

.next-button {
  right: 0px;
}

.nav-button:hover {
  background-color: rgba(0, 0, 0);
}

.fullscreen-caption { 
  position: fixed;
  bottom: 0px;
  left: 25%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 1300;

  color: #e58513;
  font-size: 24px;
  text-shadow: 0 0 8px #646464; 
  font-family: 'Space Mono', monospace; 
  white-space: nowrap; 
  background-color: #000; 
  padding-left: 22px; 
  padding-right: 22px; 
}

.fullscreen-links {
  position: fixed;
  bottom: 0px;
  left: 80%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 1300;
}

.fullscreen-links a {
  color: #e58513;
  font-size: 24px;
  text-shadow: 0 0 8px #646464; 
  font-family: 'Space Mono', monospace; 
  white-space: nowrap; 
  background-color: #000; 
  padding-left: 22px; 
  padding-right: 22px; 

  background-color: #000;
  text-decoration: none;
}

.fullscreen-links a:hover {
  background-color: #000;
  color: #e58513;
  border-left: 2px dashed #e58513;
  border-right: 2px dashed #e58513;
}

.sort {
  background-color: #000;
  color: #e58513;
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: 18px;
  padding: 6px 20px;
  border-radius: 4px;
  border: 1px solid #e58513;
  text-shadow: 0 0 8px #646464;
}

.sort:hover {
  background-color: #080808;
  border: 1px dashed #646464;
}

.sold {
  color: #ff0000;
}
.avail {
  color: #00ff00;
}

svg {
  fill: #e58513;
  stroke: #e58513;
  height: 100px;
  -webkit-filter: drop-shadow(  0 0 4px #646464);
  filter: drop-shadow( 0 0 4px #646464;);
}