.mensa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}
@media only screen and (max-width: 1200px) {
    .mensa-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media only screen and (max-width: 800px) {
    .mensa-grid {
        grid-template-columns: 100%;
    }
}
.zusatzstoffe {
    display: block;
}
.allergene {
    display: block;
}
.mensa-flex {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 30px;
    overflow-x: auto;
}
.mensa-flex h3 {
    text-align: center;
}
.mensa-content {
    width: 50%;
    padding: 0 30px 30px 30px;
    background-color: #f6f6f6;
}
.mensa-table {
    border: none;
    width: 100%;
}
.mensa-table td,
.mensa-table th {
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 12px;
}
@media only screen and (max-width: 800px) {
    .mensa-flex {
        flex-wrap: wrap;
    }
    .mensa-content {
        width: 100%;
    }
}
