/* Modal styles for gallery images */
#gallery-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.7);
}
.gallery-modal-backdrop {
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.7);
  z-index: 1;
}
.gallery-modal-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#gallery-modal-img {
  max-width: 90vw;
  max-height: 80vh;
  margin-bottom: 1rem;
  border-radius: 4px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.5);
  background: #fff;
}
#gallery-modal-close {
  background: #222;
  color: #fff;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  opacity: 0.85;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
#gallery-modal-close:hover {
  background: #444;
}
