.info-dashboard .accordion {
    background-color: #892a0f;
    color: white;
    cursor: pointer;
    padding: 12px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: background-color 0.3s;
    font-size: 16px;
    margin-bottom: 5px;
    border-radius: 5px;
}

.info-dashboard .accordion.active,
.info-dashboard .accordion:hover {
    background-color: #78250e;
}

.info-dashboard .panel-content {
    display: none;
    padding: 10px 20px;
    background-color: #4b4a4a;
    border-radius: 5px;
}

.info-dashboard ul {
    list-style-type: disc;
    padding-left: 20px;
    
}

.info-dashboard h4 {
    margin-top: 10px;
}

/* Alle Links im Dashboard ohne Unterstrich */
.info-dashboard a,
.info-dashboard .post-title {
    text-decoration: none; /* Unterstrich entfernen */
    color:azure;
}