/* Allekleuren Agenda */

.aka-agenda-wrapper {
    width: 100%;
    overflow-x: auto;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

.aka-agenda-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
    line-height: 1.5;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

.aka-agenda-table thead th {
    text-align: left;
    padding: 10px 14px;
    border-bottom: 2px solid currentColor;
    font-weight: 700;
    white-space: nowrap;
}

.aka-agenda-table tbody td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    vertical-align: top;
}

.aka-row--past td {
    opacity: 0.5;
}

.aka-tickets-link {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid currentColor;
    border-radius: 3px;
    text-decoration: none;
    font-size: 0.85em;
    font-weight: 600;
    transition: background-color 0.15s, color 0.15s;
}

.aka-tickets-link:hover {
    text-decoration: none;
    opacity: 0.75;
}

.aka-no-shows {
    font-style: italic;
    opacity: 0.7;
}

/* Responsive: card layout on small screens */
@media (max-width: 600px) {
    .aka-agenda-table thead {
        display: none;
    }

    .aka-agenda-table tbody tr {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        column-gap: 10px;
        row-gap: 2px;
        margin-bottom: 1.25em;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 1em;
    }

    .aka-col-country {
        grid-column: 1;
        grid-row: 1 / 3;
        font-size: 1.6em;
        line-height: 1;
        padding: 2px 0;
        border-bottom: none;
    }

    .aka-col-date {
        grid-column: 2;
        grid-row: 1;
        font-weight: 700;
        padding: 2px 0;
        border-bottom: none;
    }

    .aka-col-location {
        grid-column: 2;
        grid-row: 2;
        padding: 2px 0;
        border-bottom: none;
        opacity: 0.85;
    }

    .aka-col-samenstelling {
        grid-column: 1 / 3;
        padding: 4px 0 0;
        border-bottom: none;
        opacity: 0.7;
        font-size: 0.85em;
    }
}
