#overview-main {

    display: flex;
    flex-direction: row; /* nebeneinander */
    align-items: flex-start;
    gap: 20px; /* Abstand zwischen den Boxen */

    padding: 10px;
}

#overview-participations,
#overview-right-side {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 5px 20px;
    box-shadow: 2px 2px 5px #c0c0c0;
}

/* Linke Box */
#overview-participations {
    border-radius: 10px;
    width: 70%;   /* oder auto */
    min-height: 50px;

}

/* Rechte Box */
#overview-right-side {
    width: 350px;   /* deutlich kleiner */
    min-height: 100px;
}

#overview-participations h4,
#overview-right-side h4 {
    border-bottom: 1px solid #c0c0c0;
    padding-bottom: 5px;
    border-left: 30px solid #c0c0c0;
    padding-left: 10px;
}

#overview-participations ul {
    list-style-type: none;
}

#overview-participations ul li {
    margin-bottom: 40px;
}

.overview-participations-event {
    display: inline-block;
    width: 40% !important;
}

.overview-participations-date {
    display: inline-block;
    width: 30% !important;
}

.overview-participations-location,
.overview-participations-participation,
.overview-participations-amount,
.overview-participations-efz-status {
    font-size: 10pt;
    font-weight: normal;
    display: inline-block;
}

.overview-participations-location {
    width: 40% !important;
}
.overview-participations-participation {
    width: 30% !important;
}

.overview-participations-efz-status {
    margin-left: 71%;

}