* {
    margin: 0;
    padding: 0;

}

body, html {
    font-family: 'Lato', sans-serif;
    width: 100%;
    height: 100%;
}


.container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 12fr 2fr;
    grid-template-rows: 1fr 12fr 1fr;
}


#viewer {
    grid-area: 1 / 1 / 4 / 3;
    height: 100%;
    width: 100%;
    z-index: 10;

}
#viewer:focus {
    outline: none;
}


#cameraSettingsContainer {
    grid-area: 3 / 1 / 4 / 3;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    width: auto; 
    height: auto;
}

#viewSwitch {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: #F5F5F5;
    box-shadow: 0px 4px 8px rgba(183, 183, 183, 0.25);
    border-radius: 60px;
    margin: 20px;
    width: 79px;
    height: 40px;
    z-index: 11;
}


#floorBtnContainer{
    grid-area: 2 / 1 / 3 / 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.floorBtn {
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.05em;
    border: none;
    width: 41px;
    height: 40px;
    color:#9B9B9B;
    margin: 4px;
    z-index: 11;
    cursor: pointer;
}

.exportBtn {
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.05em;
    border: none;
    width: 61px;
    height: 40px;
    color:#9B9B9B;
    margin: 4px;
    z-index: 11;
    float: right;
    cursor: pointer;
}

.exportBtn:hover {
    background-color: #00A2D4;
    color: #FFFFFF;
}

.highlightTenantFloor {
    background-color: #a7e8ff;
    color: #00A2D4;
}

.floorBtn:hover {
    background-color: #00A2D4;
    color: #FFFFFF;
}
 
.viewBtn {
    background: #F5F5F5;
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.05em;
    border: none;
    color: #07121a;
    width:30px;
    height: 29px;
    border-radius: 60px;
}

#infoContainer {
    grid-area: 1 / 3 / 4 / 4;
    display: flex;
    flex-direction: column;
    justify-content:flex-start;
    padding: 30px;
    gap: 18px;
    width: "500px"; 
    height: auto;
    border-left: 1px solid #E8E8E8;
    text-align: left;
    font-style: normal;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.05em;
    font-weight: 700;
}

hr {
    height: 1px;
    background-color: #E8E8E8;
    border-width: 0;
}

#tenantName {
    font-size: 28px;
    line-height: 34px;
}

#totalRentalObjectTitle {   
    font-size: 20px;
    line-height: 24px;
    color: #707070;
}

#rentalObjectInfo {
    display: flex;
    flex-direction: row;
    align-content: row;
    justify-content: flex-start;
    gap: 30px;
    font-size: 12px;
    line-height: 14px;
}

.infoDiv {
    display: flex;
    justify-content: row;
    align-items: center;
}

.infoBtn {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-size: 12px;
    text-align: left;
    line-height: 14px;
    letter-spacing: 0.05em;
    color: #E7F5FA;
    background-color: #00A2D4;
    margin: 4px 0px;
    width: 100%;
    height: 60px;
    padding: 10px;
    gap: 8px;
    border: none;
}



.roomTypeIconContainer {
    padding: 4px;
    border-radius: 2px;
    background-color: #ffffff;
    margin-right: 4px;
}
.roomTypeIcon {
    filter: invert(45%) sepia(44%) saturate(4140%) hue-rotate(165deg) brightness(99%) contrast(101%);
}

.valueClass {
    font-size: 20px;
    line-height: 24px;
    width: 80px; 
}



.btnElements {
    width: 100px;
}

.smallIcon {
    padding-right: 10px;
}

.floorBtnClicked {
    background-color: #00A2D4;
    color: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(149, 149, 149, 0.25);
    width: 48px;
    height: 47px;
}

.viewBtnClicked {
    background-color: #00A2D4;
    color: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(149, 149, 149, 0.25);
}

.pointer{
    cursor: pointer;
}



.floorTip{
    z-index: 15;
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
}
.floorTipBump{
    height: 12px;
    width: 12px;
    top: -23px; 
    border-radius: 0px 0px 0px 3px;
    
    position: relative;
    z-index: 16;
    transform: rotate(45deg);
    background: #1E3346;
}
.floorTipLabel{
    z-index: 17;
    height: 36px;
    width: 98px;
    left: 5px;
    padding-left: 5px;
    padding-right: 5px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    position: relative; 
    background: #1E3346;
    border-radius: 8px;
}
.floorTipText{
    position: relative; 
    top:-2px;
    color: white;
}


.scrollable-div {
    overflow-y: scroll;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #E8E8E8; 
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #9B9B9B; 
    border-radius: 5px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #000000;
  }

