.modul-container {
    font-family: Arial, sans-serif;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    max-width: 98%;
    max-height: 330px;
    overflow-y: auto;
    margin: 20px auto;
}

.termin-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.termin-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px 15px; /* Vertikale Füllung reduziert */
    border-bottom: 1px solid #f0f0f0;
}

.termin-item:last-child {
    border-bottom: none;
}

.termin-datum-zeit {
    font-weight: bold;
    color: #555;
    flex-shrink: 0;
    width: 80px;
    text-align: right;
    line-height: 1.2;
    font-size: 14px;
}

.termin-info {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.termin-logo {
    height: 40px;
    width: auto;
    border-radius: 4px;
    margin-right: 10px;
}

.termin-bezeichnung {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.no-termine-message {
    color: #777;
    text-align: center;
    padding: 20px;
}
