 body {
     padding: 0;
     margin: 0;
     overflow: auto;
 }

 .sidebar {
     width: 22%;
     background-color: rgb(7, 20, 43);
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     height: 100vh;
     position: fixed;
     left: 0;
     top: 0;
     bottom: 0;
     padding-bottom: 10px;
 }

 .sidebar-footer {
     padding: 10px;
     display: flex;
     align-items: center;
 }

 .content {
     margin-left: 22%;
     width: 78%;
     padding: 20px;
 }