html{
    height: 100%;
}
body{
    overflow-y: hidden;
    color: #ffffff;
    height: 100%;
    background: #1F1F1F;
}

header{
    width: 100%;
    background: #0a0a0a;
    height: 50px;
    text-align: right;
    overflow: hidden;
}
svg{
    fill: currentColor;
    width: 100%;
    height: 50px;
}
.hover:hover{
    color: #7F85F5 !important;
}

.microsoft_365_adjustor{
    justify-content: center;
    float: left;
    width: 70px;
    padding-left: 20px;
    padding-top: 7px;
    margin-top: 5px;
}
.search{
    width: 100%;
    height: 80%;
    background: #1F1F1F;
    color: #efefef;
    border: none;
    outline: none;
    border-radius: 5px;
    padding-left: 15px;
    font-size: medium;
}

.side-panel{
    display: inline-flex;
    position: absolute;
    left: 0;
    width: 70px;
    height: 100%;
    background: #0a0a0a;
    color: #efefef;
    padding-left: 0.5%;
    flex-direction: column;
    overflow-wrap: break-word;
}

.main{
    display: inline-flex;
    width: calc( 100% - 70px);
    height: 100%;
    position: absolute;
    left:70px;
    padding: 15px 30px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.main > div > svg{
    width: auto;
}
.main::-webkit-scrollbar {
  display: none;
}

button{
    background: transparent;
    border: 1px solid #efefef;
    color: #efefef;
    font-size: small;
    width: 160px;
    border-radius: 6px;
    position: relative;
    top: -7px;
}
button:hover{
    background: #363636;
}

.box{
    box-shadow: 0 0.2rem 0.4rem -0.075rem rgb(0 0 0 / 25%);
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 50%);
    background: #292929;
    color: #fff;
    height: 100%;
    padding: 10px 20px;
}
.box:hover{
    background: #3D3D3D;
}