.header {
    background-color: #f54a21;
    color: white;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
}
.sidebar {
    background-color: #000000;
    color: white;
    width: 250px;
    position: fixed;
    height: 100%;
    padding-top: 20px;
}
.sidebar-header {
    text-align: center;
    padding: 20px;
    font-size: 20px;
    background-color: #f54a21;
}
.nav {
    list-style: none;
    padding: 0;
}

.nav li {
    padding: 10px;
    text-align: left;
}

.nav li a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center; /* Align the text and icon */
    font-size: 18px;
    transition: background-color 0.3s;
    padding: 10px;
}

.nav li a:hover {
    background-color: #f54a21;
}

.nav li a i {
    margin-right: 10px; /* Space between icon and text */
    font-size: 20px; /* Size of the icons */
}