/* generic styling */
*{
    box-sizing: border-box;
    font-weight: 100;
}
body{
    margin:0px;
font-family:sans-serif;
}
select{
    border: none;
    padding-right: 0.5rem;
    border-right: 1px solid;
    outline:none;
}
/* *******************menu *************bar */
.menu_bar{
    /* border: 2px solid red; */
    /* background-color:brown; */
    height:3rem;
    width:100vw;
    display: flex;
    align-items: center;
}
.menu_bar>*{
    border-right:1px solid black;
    height:70%;
    display: flex;
    justify-content:space-evenly;
    align-items:center;
}
.new_open_save_container{
    width:22%;
}
.formatting-container{
    width:30%;
}
.font_family_input{
    flex:4;
    text-align: center;
    /* width: 66.6%; */

}
.font_size_input{
    flex:1;
    text-align: center;
    /* width:30.33%; */
}

.bui_container,.alignment_container,.color-container{
    width:17%;

}

.fas{
    font-size:1.4rem;
    color: #2f3542;
}

.color-container{
    border-right: none;
}
.bui_container>*, .alignment_container>*, .color_container>*{
font-size: 1rem;
}
.selected{
    background-color: #a28989;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgb(160 158 158);
}
    

    .icon_container{
        height:60%
    }
    
.formula_bar{
    /* background-color:lightpink; */
    height:2rem;
}
.sheets_container{
    /* background-color:lightgoldenrodyellow; */
    height:2.5rem;
    display: flex;
}
/* sheets css */
.add-sheet_container{
    height: 100%;
    min-width:30px;
    border: 1px solid gray;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sheets-list{

    display: flex;
    height: 100%;
    overflow-x: auto;
}
.sheets-list::-webkit-scrollbar {
    display: none;
  }
  /* Hide scrollbar for IE, Edge and Firefox */
  .sheets-list {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
.sheet{
    min-width:60px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border:1px solid;
}
.active-sheet
{
    background-color: gainsboro;
}

/* ************grid css************** */
.grid_container{
 height:calc(100vh - ( 5rem + 2rem + 2.5rem) );
    /* background-color:lightgreen; */
    overflow: scroll;
}
.cell{
    border:0.1px solid gray;
    height:1.4rem;
    text-align: center;
    outline:none;
    border-right:none;
    border-top:none;
    /* font-family: 'Courier New'; */
    /* font-family: 'Franklin Gothic Medium'; */
    /* font-family: 'Trebuchet MS'; */
/* font-family: Georgia, 'Times New Roman', Times, serif; */
}
.top_row{
    display: flex;
    position: relative;
    left: 2rem;
    top: -1.4rem;
}
.top_row .cell{
    text-align: center;
    /* these cells are flexed  */
    min-width:5rem;
    padding-top: 0.21rem;;
    font-size: 0.7rem;
    border-top:0.1px solid gray;
    background-color: #f1f2f6;
}
.left_col{
    width: 2rem;
    text-align: center;
    position: relative;
    top: -1.45rem;
    background-color: #f1f2f6;

}
.left_col>.cell{
    padding-top: 0.21rem;
    font-size: 0.7rem;
}
.top_left_cell{
    height: 1.4rem;
    width: 2rem;
    border-right: 5px solid lightgray;
    border-bottom: 5px solid lightgray;
   
}

.row{    
    display: flex;}
.grid .cell{
    min-width:5rem;
    border:0.02px solid rgb(160, 158, 158);
    border-top:none;
    border-right: none;
}
.grid_container{
    position: relative;
}
.grid{
    position: absolute;
    top: 1.35rem;
    left: 2rem;
}
/* ***********formula bar ****************/
.formula_bar{
    display: flex;
align-items: center;
justify-content: center;
border:none ;
border-top:1px solid gray;
}

.formula_bar>*{
    height:70%;
    
}
.address_input{
    width:4rem;
    text-align: center;
    border:none;
    outline :none;
    border-right: 0.5px solid gray;
}
.formula_input{
    width:calc(100vw - 12rem );
    border:none;
    border-left:1px solid gray;
    outline: none;
}
.formula_bar img{
    display: inline-block;
    height: 60%;
    margin-right:0.2rem;
    margin-left:1rem;
}

