/* Algemene container */
.msm-gcal-matches {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Wedstrijdblok */
.msm-gcal-matches .msm-match {
    border: 1px solid #ccc !important;
    padding: 20px !important;
    background-color: #f9f9f9 !important;
    border-radius: 8px !important;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.1) !important;
}

/* Agenda-titel */
.msm-gcal-matches .msm-match .msm-agenda-title {
    font-size: 16px !important;
    font-weight: bold !important;
    margin-bottom: 6px !important;
    color: #555 !important;
    text-transform: uppercase !important;
}

/* Wedstrijdtitel */
.msm-gcal-matches .msm-match h3 {
    font-size: 22px !important;
    font-weight: bold !important;
    margin-bottom: 6px !important;
    line-height: 1.2 !important;
    /* Kleur wordt automatisch van agenda overgenomen */
}

/* Datum */
.msm-gcal-matches .msm-match .msm-date {
    font-size: 16px !important;
    color: #333 !important;
    font-style: italic !important;
    margin: 0 !important;
}

/* Locatie */
.msm-gcal-matches .msm-match .msm-location {
    font-size: 16px !important;
    color: #555 !important;
    margin: 0 !important;
}

/* Ticketknop verbergen */
.msm-gcal-matches .uk-button-primary {
    display: none !important;
}

/* Hover effect */
.msm-gcal-matches .msm-match:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.15) !important;
}

/* Responsiviteit */
@media (max-width: 768px) {
    .msm-gcal-matches .msm-match {
        padding: 15px !important;
    }

    .msm-gcal-matches .msm-match h3 {
        font-size: 20px !important;
    }

    .msm-gcal-matches .msm-match .msm-date,
    .msm-gcal-matches .msm-match .msm-location,
    .msm-gcal-matches .msm-match .msm-agenda-title {
        font-size: 14px !important;
    }
}