*{
box-sizing: border-box;
}

body{
    padding: 0;
    margin: 0;
}

.page-actions-cont{
    height: 3rem;
    background-color: #218c74;
    display: flex;
    align-items: flex-end;
    padding-left:1rem;
}

.page-action{
    margin: 0.5rem;
    color: #f1f2f6;  
}

.cellprop-actions-cont{
    height: 3rem;
    background-color: #ecf0f1;
    display: flex;
    align-items: center;
    padding-left:1rem;
}

.cellprop-actions-cont > * {
    display: inline-block;
    margin-right: 1rem;
}

.cellprop-actions-cont > *:hover{
    cursor: pointer;  /* cursor changes to pointer instead of input on hovering */
}

.cellprop-actions-cont > select{
    border: none; 
    border-radius: 2px;
}

.font-size-prop{
    padding: 0.2rem;
}

.formula-actions-cont{
    height: 2rem;
    background-color: #ecf0f1;
    padding-left:1rem;
    display:flex;
    align-items: center;
}

.formula-actions-cont > *{
    display:inline-block;
    margin-right:0.7rem;
}
.formula-actions-cont > input{
    border:none;
    outline:none;
    height: 70%;
}

.formula-icon{
    height:1.2rem;
}

.address-bar{
    width:5rem;
    text-align:center;
}
.formula-bar{
    /* container - adress bar - margin - paddding -  formula-icon */
     width :calc(100vw - 5rem - 0.7rem - 0.7rem - 0.7rem); 
}

.font-family-prop{
    padding: 0.2rem;
}

.sheet-actions-cont{
    height: 3rem;
    background-color: #ecf0f1;
    display:flex;
    align-items:center;
    padding-left:0.5rem;
    padding-right:0.5rem;
    gap:1rem ; /*It's add the space in between the elements*/
}

.sheet-actions-cont>*{
    display:inline-block;
}

.sheet-add-icon{
    width:2vw; 
}

.sheet-add-icon{
    cursor:pointer;
}
.sheet-folder-cont{
    display:flex;
    align-items:center;
    height:80%;
    width:5rem;
    /* background-color:antiquewhite; */
    overflow:auto;
    width: calc(100vw - 2vw);
}

.sheet-folder{
    text-decoration: underline;
    /* border:solid red; */
    height:80%;
    font-weight: bold;
    text-decoration-thickness: 3px;
    font-size:0.9rem;
    background-color: lightblue;
    text-align:center;
    display:flex;
    justify-content: center;
    align-items: center;
}

.sheet-content{
    width:5rem;
}

.grid-cont{
    height: calc(100vh - 3rem - 3rem - 2rem - 3rem);
    background-color: #ecf0f1;
    position: relative;
    overflow: scroll;
}

.top-left-dummy-box{
    height: 2rem;
    width: 2rem;
    position:fixed;
    z-index:1;
    background-color: #747d8c;
}

.address-col-cont{
    position: sticky;
    top:2rem;
    left:0rem;
}

.address-row-cont{
    display: flex;
    position:sticky;
    top:0;
    left:2rem;
}

.cells-cont{
    position: absolute;
    top:0;
    left:2rem;
}

.address-col{
    height: 2rem;
    width: 2rem;
    border: 1px solid #dfe4ea;
    display: flex;
    justify-content: center;
    align-items: center;
}

.address-row{
    height: 2rem;
    width: 5rem;
    border: 1px solid #dfe4ea;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cell{
    height: 2rem;
    width: 5rem;
    border: 1px solid #dfe4ea;
}
.row-container{
    display: flex;
}

.color-prop{
    position:relative;
}

.color-prop > input{
    opacity:0.5;
    position:absolute;
    top:0;
    left:0;
    width: 100%;
    height:100%;
}