.main-menu {
    width: 100%x;
    /* Breite der Seitenleiste anpassen */
}

.main-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.main-menu ul li {
    margin-bottom: 5px;
    /* Abstand zwischen den Menüpunkten anpassen */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-menu ul li a {
    color: #505050;
    text-decoration: none;
    padding: 10px 15px;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.main-menu ul li a:hover,
.main-menu ul li a.active {
    background-color: #666666;
    color: #ffffff;
}

.main-menu a {
    position: relative;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: var(--sperr-prozent, 0%);
    background: #8bc34a;
    transition: width 0.3s;
}

.userinfo {
    padding: 15px;
    margin: 0;
    min-height: 68px;
    height: 80px;
    background-color: #ffffff;
    color: #787878;
}

.userinfo-link {
    text-decoration: none;
}

h2.menukopf {
    padding: 20px 15px;
    margin: 0;
}

.abmelden {
    margin: 10px 15px;
    max-width: 100%;
}

.btn-header {
    width: 10rem;
    height: 36px;
}

.anzahl {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    font-size: 10px;
    border-radius: 8px;
    background-color: #8bc34a;
    color: #ffffff;
    margin-left: 5px;
    margin-right: 5px;
    height: 16px;
    width: 16px;
    text-align: center;
    justify-content: center;
    align-content: center;
}