/* Lightbox widget styles for WordPress gadget */
.hba-lightbox-thumb{display:inline-block}
.hba-lightbox-thumb img{max-width:100%;height:auto;cursor:pointer;border:1px solid #ddd;border-radius:4px}
.hba-lb-overlay{position:fixed;inset:0;display:none;align-items:center;justify-content:center;background:rgba(0,0,0,0.6);z-index:9999;padding:18px}
.hba-lb-overlay.hba-open{display:flex}
.hba-lb-panel{background:#fff;max-width:980px;width:100%;max-height:90vh;display:flex;flex-direction:row;gap:16px;border-radius:8px;overflow:hidden;box-shadow:0 10px 30px rgba(0,0,0,0.35)}
.hba-lb-image{flex:1 1 60%;display:flex;align-items:center;justify-content:center;background:#fafafa}
.hba-lb-image img{max-width:100%;max-height:80vh;object-fit:contain}
.hba-lb-html{flex:1 1 40%;padding:14px;overflow:auto;border-left:1px solid #eee}
.hba-lb-close{position:absolute;right:16px;top:14px;background:#111;color:#fff;border:none;padding:6px 10px;border-radius:4px;cursor:pointer}
@media (max-width:860px){
  .hba-lb-panel{flex-direction:column;max-width:94vw}
}
