.mm-agenda,
.mm-agenda-tabs-wrapper {
    --mm-agenda-bg: #eeeeee;
    --mm-agenda-row: #f6f6f6;
    --mm-agenda-time: #a7c4c0;
    --mm-agenda-tab: #d9d9d9;
    --mm-agenda-tab-active: #f58212;
    --mm-agenda-accent: #ff2c93;
    --mm-agenda-text: #111111;
    --mm-agenda-muted: #5f6770;
    color: var(--mm-agenda-text);
}

.mm-agenda-heading-wrap {
    text-align: center;
    margin: 0 0 20px;
}

.mm-agenda-heading {
    display: inline-block;
    margin: 0;
    padding: 0 0 10px;
    font-size: 2rem;
    line-height: 1.2;
    position: relative;
}

.mm-agenda-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 180px;
    max-width: 100%;
    height: 2px;
    background: var(--mm-agenda-accent);
    transform: translateX(-50%);
}

.mm-agenda-tab-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin: 0 0 24px;
}

.mm-agenda-tab-button {
    appearance: none;
    border: 0;
    border-radius: 0;
    background: var(--mm-agenda-tab);
    color: var(--mm-agenda-text);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    padding: 16px 20px;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease;
}

.mm-agenda-tab-button.is-active {
    background: var(--mm-agenda-tab-active);
    color: #ffffff;
}

.mm-agenda-tab-panel {
    display: none;
}

.mm-agenda-tab-panel.is-active {
    display: block;
}

.mm-agenda-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mm-agenda-item {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
}

.mm-agenda-time {
    background: var(--mm-agenda-time);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
}

.mm-agenda-time-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mm-agenda-time-text .ectbe-icon-clock {
    font-size: 14px;
    line-height: 1;
}

.mm-agenda-time-value {
    line-height: 1.4;
}

.mm-agenda-main {
    background: var(--mm-agenda-row);
    min-width: 0;
    padding: 12px 30px;
}
.mm-agenda-item {
	border-radius:6px!important;
	overflow:hidden!important;
}
.mm-agenda-main.is-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
    gap: 24px;
    align-items: center;
}

.mm-agenda-title {
    color: #000 !important;
    margin: 0 !important;
    margin-bottom: 0 !important;
    font-size: 16px !important;
    line-height: 1.45;
    font-weight: 400 !important;
}

.mm-agenda-description {
    margin-top: 12px;
    color: var(--mm-agenda-muted);
    font-size: .98rem;
    line-height: 1.6;
}

.mm-agenda-description > :first-child {
    margin-top: 0;
}

.mm-agenda-description > :last-child {
    margin-bottom: 0;
}

.mm-agenda-location-column {
    min-width: 0;
	text-align:left;
}

.mm-agenda-location {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    color: #000!important;
    font-size: .86rem;
    line-height: 1.5;
}

.mm-agenda-location-inline {
    margin-top: 12px;
}

.mm-agenda-location-icon {
    line-height: 1.5;
}

@media (max-width: 767px) {
    .mm-agenda-heading {
        font-size: 1.65rem;
    }
.mm-agenda-location-column {
    min-width: 0;
	text-align:left;
}
    .mm-agenda-title {
        font-size: 16px !important;
    }

    .mm-agenda-item {
        grid-template-columns: 1fr;
    }

    .mm-agenda-time {
        justify-content: flex-start;
        padding: 16px 18px;
    }

    .mm-agenda-main {
        padding: 12px 18px 12px;
    }

    .mm-agenda-main.is-split {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mm-agenda-tab-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}
