.sidebar {
    max-width: 60%;
    justify-content: space-between;
}

.sidebar a, .user-items a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #ccc;
    font-size: 30px;
    font-weight: 400;
    margin: 5px;
    color: black;
    text-decoration: none;
    position: relative;
    display: inline-block;
    border-bottom: none;
    width: 100%;
}

.sidebar a:last-child {
    border-bottom: none;
}

.sidebar a:hover {
    color: #A32622;
    transition: width 0.3s ease;
}

.sidebar a.active {
    color: #A32622;
    font-weight: 600;
}

.header-user-icon {
    border: 2px solid #A32622;
    background-color: #A32622;
    padding: 10px;
    border-radius: 5px;
    max-height: 56px;
}

.navbar-toggler.menu-button {
    background-color: #A32622;
    border-color: #A32622;
}

.navbar-toggler.menu-button .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.user-items button {
    all: unset;
    font-size: 30px;
    font-weight: 400;
    margin: 5px;
    color: black;
    text-decoration: none;
    position: relative;
    padding-bottom: 1px;
    display: inline-block;
}

.user-items button:hover {
    color: #A32622;
    text-decoration: none;
    transition: width 0.3s ease;
}

@media (max-width: 1400px) {
    .sidebar {
        max-width: 80%;
    }
}

@media (max-width: 1200px) {
    .sidebar {
        max-width: 100%;
        flex-direction: row;
    }
}

@media (min-width: 991px) {
    .sidebar a {
        display: inline-block;
        padding: 0 0 1px;
        border-bottom: none;
        width: unset;
    }
}

@media (max-width: 768px) {
    .logo img {
        width: 100px;
    }

    .sidebar a {
        font-size: 25px;
    }
}

