.event-agenda-wrapper-e173ebdb {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.ea-header-row {
	display: flex;
	flex-direction: row;
	background-color: #002244;
	color: #fff;
	align-items: center;
}

.ea-header-col {
	display: flex;
	align-items: center;
	padding: 15px 20px;
	gap: 10px;
	font-weight: bold;
}

.ea-header-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.ea-header-icon svg,
.ea-svg-inline svg,
.ea-svg-icon-img {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.ea-header-col-time {
	width: 150px;
	flex-shrink: 0;
	border-right: 1px solid rgba(255,255,255,0.2);
}

.ea-header-col-session {
	flex-grow: 1;
}

.agenda-row {
    display: flex;
    padding: 10px;
    border-bottom: 1px solid #eee;
    align-items: center;
}
.agenda-row:last-child {
    border-bottom: none;
}
.agenda-time {
    width: 150px;
    flex-shrink: 0;
    padding-right: 15px;
    display: flex;
    align-items: center;
}
.agenda-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.agenda-session {
    display: flex;
    align-items: center;
    flex-grow: 1;
}
.agenda-row-highlighted {
    background-color: #fff3e0;
}
.agenda-row-strong {
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .ea-header-row {
        display: none; /* Hide table headers on mobile for cleaner look */
    }
    
    .agenda-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }
    
    .agenda-time {
        width: 100%;
        padding-right: 0;
        margin-bottom: 5px;
        border-right: none !important;
        font-weight: bold;
    }
    
    .agenda-session {
        width: 100%;
    }
}