/* Algemene stijlen voor de vergaderingslijst */
.mmt-meeting-list {
    padding: 0;
    margin: 0;
    width: 100%;
}

.main-container {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.mmt-ml-meetings {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
    padding: 0;
    list-style: none;
    margin: 0;
}

@media (min-width: 450px) {
    .mmt-ml-meetings {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 990px) {
    .mmt-ml-meetings {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mmt-ml-meeting {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mmt-ml-meeting--hasCoverPhoto {
    background-color: #f9f9f9;
}

/* Wrapper voor de gedetailleerde lijst */
.mmt-ml-meeting__wrapper {
    display: flex;
    flex-direction: column;
}

.mmt-ml-meeting-image-container {
    width: 100%;
    height: 195px; /* Pas de hoogte aan naar wens */
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5em;
    margin-top: 1.5em;
}

.mmt-ml-meeting-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Zorgt voor crop en zoom effect */
    object-position: center; /* Zorgt dat de afbeelding gecentreerd wordt */
    border-radius: 7px;
}

.mmt-ml-meeting__contentItem {
    margin-bottom: 10px;
}

.mmt-ml-meeting__date, .mmt-ml-meeting__details {
    overflow: hidden; /* Voor float clearing */
}

/* Stijl voor datum */
.mmt-ml-date {
    float: right; /* Plaats de datum rechts */
    font-size: 15px;
    color: #fff;
    background: #404040;
    text-transform: uppercase;
    padding: 5px;
    margin-bottom: 10px; /* Ruimte onder de datum toevoegen */
}

.mmt-ml-date-day {
    font-weight: bold;
    display: block; /* Zorgt ervoor dat de dag op een nieuwe regel staat */
}

.mmt-ml-date-month-year {
    margin-left: 5px;
}

/* Stijl voor titel */
.mmt-ml-title-pane h3 {
    font-size: 16px;
    color: #333;
    margin: 0;
    font-weight: bolder;
}

/* Meta data stijl */
.mmt-ml-meta-data {
    font-size: 12px;
    color: #666;
}

.mmt-ml-tags {
    font-size: 12px;
    color: #fff;
}

.mmt-ml-tag {
    display: inline-block;
    margin-right: 5px;
    padding: 5px 5px;
    background-color: #ffffff;
    border-radius: 3px;
    border: 1px solid;
}

.mmt-ml-tag a {
    color: #007BFF;
    text-decoration: none;
}

.mmt-ml-tag a:hover {
    text-decoration: none;
}

/* Beschrijving stijl */
.mmt-ml-description {
    font-size: 14px;
    color: #555;
}

/* Registratie informatie stijl */
.mmt-ml-registrations {
    font-size: 12px;
    color: #28a745;
}

/* Footer pane stijl */
.mmt-ml-footer-pane {
    margin-top: 10px;
}

.mmt-ml-footer-pane .mmt-ml-more {
    display: inline-block;
    padding: 5px 10px;
    font-size: 14px;
    color: #fff;
    background-color: #99cc00;
    border: none;
    border-radius: 3px;
    text-decoration: none;
}

.mmt-ml-footer-pane .mmt-ml-more:hover {
    background-color: #606060;
}