.nav-bar {
    position: fixed;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 6px;
    z-index: 1000;  
    align-items: center;   
}

button {
    padding: 6px 12px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #888;
    background-color: #f8f8f8;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #6ce72f;
  }
  
     
.info-box {
    position: fixed;
    bottom: 10px;
    left: 10px;
    font-size: 20px;
    background: rgba(255,255,255,0.8); /* optional for readability */
    z-index: 999;
  }
  

#bingoImg {
    max-height: 98vh;
    max-width: 99vw;
    height: auto;
    width: 100%;
    object-fit: contain;
}

.image-wrapper {
    width: 99vw;
    height: 98vh;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}