



html, head, body{
    margin: 0;
    position: relative;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    /* overflow: hidden; */
    
}


.app-base-frame{
  margin: 0;
  background:var(--main-background);

  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

:root{

    --main-background : white;
    --footer-height: 20px; 


}




/* 


.app-base-frame{
  margin: 0;
  background:var(--main-background);
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
} */


.calc-frame-holder{
    width: 100%;
  
    background: rgb(255, 255, 255);
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0px;
    
}


.calc-frame, .viewbox-calc-frame{
   
} 



.calc-frame{
    display: flex;
    flex-direction: column;
    width: 37%;
    height: 100%;

}


.viewbox-calc-frame{
border-left: 0.5px solid black; 
 position: relative;
    background: rgb(0, 255, 204);
    height: 100%;
    width: 40px;
    flex: 1 1 1px;
    display: flex;
    flex-direction: column;
}





nav{
width: 100%;
height: 50px;
background: rgb(255, 255, 255);
position: relative;
display: flex;
flex-direction: row;
padding: 10px;

z-index: 1;
}


footer{
    width: 100%;
    height: var(--footer-height);
      background: orange;

}


@media screen and (max-width: 500px) {
    

.calc-frame-holder{
    width: 100%;
  
    background: rgb(179, 85, 85);
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0px;
    
}



}

.app-nav-icon {
  width: 50px;
  height: 50px;
  background-image: url("/Volumes/Samsung Cloud/SimpleSpent - Development/Assets/Graphics/Icons/S.png");
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;

}

.app-nav-title {
  font-size: 12pt;
  color: black;
  display: flex;
  font-weight: bold;
  margin-left: -12px;
  align-items: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}