/*
*
*
*/

html {
    padding: 5px;
    text-align: center;
    font-family: "Roboto", "sans-serif";
    font-size: 16px;
    line-height: 30px;
}

body {
    background-color: #f7f1ff;
}

.button {
    position: absolute;
    background-color: #84dbff;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    box-shadow: 0 0 0 5px #0019fd;
}

.button:hover {
    transform: scale(.9);
}

#map {
    /* position: absolute;
    top: 35%;
    left: 0%;
    z-index: 2;
    height: 60%;
    width: 40%; */
    display: none;
}

#panorama {
    position: absolute;
    top: 7%;
    left: 35%;
    z-index: 1;
    height: 80%;
    width: 60%;
    border: 2px solid #000000;
    border-radius: 25px;
}

#toggleBtn {
    position: absolute;
    top: 1%;
    left: 50%;
    z-index: 99;
    cursor: pointer;
}


/* **********************
START INPUT PANORAMAID
********************** */

#window-inputPanoramaID {
    position: absolute;
    bottom: 0%;
    left: 5%;
    width: 90%;
    height: 5%;
    z-index: 5;
    /* background-color: #ffffff50; */
    border: 2px solid #000000;
    border-radius: 25px;
    display: block;
    margin-bottom: 50px;
}

#label-inputPanoramaID {
    position: absolute;
    top: 12%;
    left: .7%;
    width: 45%;
    height: auto;
    z-index: 5;
}

#input-panoramaID {
    position: absolute;
    top: 12%;
    left: 30%;
    width: 50%;
    height: 2rem;
    z-index: 5;
    background-color: #ffffff50;
    border: 1px solid #000000;
    border-radius: 5px;
    /* padding-left: 5px; */
}

#button-updatePanorama {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translate(0%, -50%);
    z-index: 99;
    cursor: pointer;
}

.input-container {
    display: flex;
    gap: 10px;
    /* Adjust the gap as needed */
    align-items: center;
}

#input-panoramaID {
    flex: 1;
    /* Allow the input to take the remaining space */
}

#label-inputPanoramaID {
    margin-bottom: 5px;
}


/* ********************
END INPUT PANORAMAID
******************** */


/* **********************
START PANORAMA LIST
********************** */

#window-panoramaList {
    position: absolute;
    top: 7%;
    left: 5%;
    width: 30%;
    height: 80%;
    z-index: 5;
    /* background-color: #ffffff50; */
    border: 2px solid #000000;
    border-radius: 25px;
    display: block;
}

#button-nextPanorama {
    top: 5%;
    left: 66%;
}

#button-previousPanorama {
    top: 5%;
    left: 33%;
}

#window-panoramaDescription {
    position: absolute;
    top: 20%;
    left: 5%;
    width: 90%;
    height: 50%;
    z-index: 5;
    /* background-color: #ffffff50; */
    border: 2px solid #000000;
    border-radius: 25px;
    display: block;
}

#window-status {
    position: absolute;
    bottom: 20px;
    left: 5%;
    height: 20%;
    width: 90%;
    line-height: 1rem;
    border: 2px solid #000000;
    border-radius: 25px;
    display: block;
}

#output-status {
    position: absolute;
    bottom: 10%;
    width: 100%;
    font-size: 1.5rem;
    color: red;
    display: block;
}


/* **********************
END PANORAMA LIST
********************** */