/* assets/css/lightbox.css */
.levv-lb {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
  background: rgba(0,0,0,.88);
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.levv-lb.is-open { display: flex; }

.levv-lb__panel{
  width: min(980px, 96vw);
  height: min(720px, 86vh);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
}

.levv-lb__top{
  display:flex;
  justify-content: space-between;
  align-items:center;
  color:#fff;
  font-size:14px;
}

.levv-lb__btn{
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color:#fff;
  padding: 8px 12px;
  border-radius: 10px;
  cursor:pointer;
}
.levv-lb__btn:hover{ background: rgba(255,255,255,.14); }

.levv-lb__stage{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  display:flex;
  align-items:center;
  justify-content:center;
}

.levv-lb__img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.levv-lb__nav{
  display:flex;
  justify-content: space-between;
  gap: 10px;
}

.levv-lb__hint{
  color: rgba(255,255,255,.75);
  font-size: 12px;
}

@media (max-width: 576px){
  .levv-lb__hint{ display:none; }
}