/* Viewer container styling */
#viewer360 {
    width: 500px;
    height: 500px;
    margin: auto;
    background-color: #f3f3f3;
    overflow: hidden;
}

/* Fullscreen modal styling */
#popup360 {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1); /* Light translucent background */
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

#popup360 #popup360-viewer {
    /* width: 70vw;
    height: 70vh; */
    width: 500px !important;
    height: 500px !important;
    background-color: transparent; /* Transparent background for viewer */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Close button styling */
#popup360 .close360-btn {
    position: absolute;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

/* Close button hover effect */
#popup360 .close360-btn:hover {
    background-color: #000;
    color: #fff;
}

#show-popup360 {
    position: absolute; 
    bottom: 50px; 
    z-index: 5;
}