.card {
    /* Add shadows to create the "card" effect */
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    background-color: #006eff2d;
    transition: 0.3s;
    display: inline-block;
    border-radius: 10px;
    margin: 10px;
}

.verein_table{
    width: -webkit-fill-available;
}

/* On mouse-over, add a deeper shadow */
.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.4);
    background-color: #0099ff50;
}

/* Add some padding inside the card container */
.container {
    padding: 2px 16px;
}

.img_card {
    max-width: 90%;
    max-height: 200px;
    justify-self: center;
    display: flex;
    margin: 10px;
    border-radius: 5px;
}

.card_header {
    display: flow-root;
    font-size: larger;
    margin-bottom: 10px;
}


.event_card_title {
    float: left;
    font-weight: bold;
}

.event_card_date {
    float: right;
    font-style: italic;
    color: #424242;
}

.event_img_card {
    max-width: 200px;
    max-height: 200px;
    border-radius: 10px;
    justify-self: center;
    display: flex;
    margin: 5px;
}