.card.sidebar-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.card-image {
    border-radius: 5px;
    max-width: 100%;
}

ul.card.sidebar-card {
    padding: 15px;
    margin-bottom: 20px;
}

ul.card.sidebar-card li {
    margin-bottom: 8px;
}

ul.card.sidebar-card li a.active {
    font-weight: bold;
}

.list-unstyled a {
    display: block;
    padding: 8px 16px;
    border-radius: 15px;
    margin-top: 10px;
    background: linear-gradient(135deg, #ffffff, #f3f3f3);
    border: 1px solid #eaeaea;
    color: #444;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative; /* wichtig für Pseudo-Element */
}


.list-unstyled .active {
    background: linear-gradient(135deg, #c0c0c0, #d0d0d0);
    color: #fff;
}

.list-unstyled a:hover:not(.active) {
    background: #ee8303;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.list-unstyled a + a {
    margin-top: 8px;
}

.list-unstyled a img {
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

.list-unstyled a:not(.active):not(:hover)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px; /* Breite des linken Bogens */
    height: 100%;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border-left: 1px solid orange;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
}

/* Platz für das Icon */
.list-unstyled a {
    position: relative;
    padding-right: 45px; /* wichtig */
}

.list-unstyled a::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    width: 20px;
    height: 20px;
    background: url('/templates/querubin/images/mainpage/angel_white.png') no-repeat center;
    background-size: contain;
    opacity: 0;
    transition: all 0.3s ease;
}

.list-unstyled a:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}
