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

.card-item {
    margin-bottom: 12px;
}

.card-image {
    border-radius: 5px;
}
/* Basis-Styling für die Sidebar-Card Links */
.sidebarmain .card 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; /* nötig für Pseudo-Element */
}

/* Pseudo-Element für den linken orangenen Bogen nur, wenn nicht active & nicht hover */
.sidebarmain .card 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;
}

/* Hover – sanfter Premium-Effekt */
.sidebarmain .card a:hover {
    /*background: linear-gradient(135deg, #1d8575, #27a796);*/
    background: #ee8303;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Abstand zwischen mehreren Buttons */
.sidebarmain .card a + a {
    margin-top: 8px;
}

/* Bild-Links nicht als Button stylen */
.sidebarmain .card a img {
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}


.sidebarmain .card a {
    position: relative;
    padding-right: 45px; /* Platz für das Icon schaffen */
}

.sidebarmain .card a:hover {
    background: #ee8303;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);

    background-image: url('/templates/querubin/images/mainpage/angel_white.png');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 22px auto; /* Größe anpassen */
}
