.tab-pane.fade:not(.active.show){
    display:none;
}




.AgendaContainer {
    max-width: 1200px;
    margin: 0 auto;
}

.AgendaTitle {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a202c;
}

/* Main Activity Card */
.MainActivityCard {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.MainActivityCard:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.MainActivityCard .td-schedule-5-content{
    padding:0;
}
.MainActivityCard .td-schedule-5-content .td-schedule-4-destination span{
    color:#64748b;
}



/* Accordion Header */
.AccordionHeader {
    padding: 20px;
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background-color 0.2s ease;
}

.AccordionHeader:hover {
    background-color: #f8fafc;
}

.AccordionHeader:focus {
    
}

.HeaderContent {
    flex: 1;
}

.ActivityTitle {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
}

.ActivityMeta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: #64748b;
}

.MetaItem {
    display: flex;
    align-items: center;
    gap: 6px;
}

.MetaIcon {
    width: 16px;
    height: 16px;
    opacity: 0.7;
    color: #64748b;
}

.ArrowIcon {
    width: 20px;
    height: 20px;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    color: #64748b;color:#b3bbc6;
    font-size: 17px;
}

.AccordionHeader[aria-expanded="true"] .ArrowIcon {
    transform: rotate(180deg);
}

/* Moderator Section */
.ModeratorSection {
    padding: 16px 20px;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.ModeratorLabel {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    margin-bottom: 12px;
}

.ModeratorInfo {
    display: flex;
    align-items: center;
    gap: 12px;
}
a.ModeratorInfo {
    cursor: pointer;
    transition: color 0.2s ease;
}
a.ModeratorInfo:hover .ModeratorName {
    color: #01877a;
    text-decoration: underline;
}

.ModeratorImage {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.ModeratorDetails {
    flex: 1;
}

.ModeratorName {
    font-size: 15px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 2px;
}

.ModeratorTitle {
    color: #64748b;
    font-size: 13px;
    line-height:14px;
}





/* Accordion Content */
.AccordionContent {
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: max-height;
}

.AccordionContent.Collapsed {
    max-height: 0 !important;
}

.AccordionContent.Expanded {
    max-height: unset;
}

.SessionsList {
    padding: 20px;
    border-top: 2px solid #e7e7e7;
}

/* Session Item */
.SessionItem {
    position:relative;
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
    padding-left: 20px;
}

.SessionItem::before {
    content:'';
    position:absolute;
    height:100%;
    width:3px;width:0;
    left:0;
    top:0;
    background-color: #01877a38;
    z-index:2;
}



 
    
    
    
.SessionItem:first-child {
    padding-top: 0;
}.SessionItem:last-child {
    padding-bottom: 0;
}



.SessionItem:last-child {
    border-bottom: none;
}

.SessionHeader {
    display: flex;
    flex-direction:column;
    /*gap: 16px;*/
    margin-bottom: 12px;
}

.SessionTime {
    font-size: 14px;
    font-weight: 500;
    color: #01877a;
    white-space: nowrap;
    min-width: 100px;
}

.SessionTitle {
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    flex: 1;
}

.SessionSpeaker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding-left: 116px;
    padding-left: 0;
}

.SpeakerImage {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.SpeakerDetails {
    flex: 1;
}

.SpeakerName {
    font-size: 14px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 2px;
}

.SpeakerTitle {
    font-size: 13px;
    color: #64748b;
    line-height: 14px;
}

.SpeakerClickable {
    cursor: pointer;
    transition: color 0.2s ease;
}

.SpeakerClickable:hover .SpeakerName {
    color: #01877a;
    text-decoration: underline;
}

/* Standalone Session Card */
.StandaloneSessionCard {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    padding: 20px;
    transition: box-shadow 0.3s ease;
}

.StandaloneSessionCard:hover {
    /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);*/
}

.StandaloneHeader {
    display: flex;
    gap: 16px;
    margin: 0px 0;
}

.StandaloneHeader .td-schedule-5-content{
    padding:0;
}
.StandaloneHeader .td-schedule-5-content .td-schedule-4-destination span{
    color:#64748b;
}

.StandaloneSpeaker {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 116px;
}










.SpeakerGroup {
    display: flex;
    align-items: center;
}

.SpeakerGroup .SpeakerImgCircle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    flex-shrink:0;
    margin-left: -16px; /* overlap amount */
    background-color: #ddd;
    cursor: pointer;
    transition: transform 0.1s ease, z-index 0.1s;
    overflow: hidden;
}

.SpeakerGroup .SpeakerImgCircle:first-child {
    margin-left: 0;
}

.SpeakerGroup .SpeakerImgCircle:hover {
    transform: scale(1.1);
    z-index: 10;
}
.SpeakerGroup .SpeakerImgCircle img {
    width:100%;
    height:100%;
    object-fit:cover;
    -webkit-object-fit:cover;
    -moz-object-fit:cover;
}



/* Responsive Design */
@media (max-width: 768px) {
/*    .SessionHeader {
        flex-direction: column;
        gap: 8px;
    }
*/


    .SessionTime {
        min-width: auto;
    }

    .SessionSpeaker,
    .StandaloneSpeaker {
        padding-left: 0;
    }

    .ActivityMeta {
        flex-direction: column;
        gap: 8px;
    }

    .AgendaTitle {
        font-size: 24px;
    }
}

@media (min-width: 769px) {

    .MainActivityCard,
    .StandaloneSessionCard {
        margin-bottom: 24px;
    }

    .AccordionHeader {
        padding: 24px;
    }

    .SessionsList {
        padding: 24px;
    }

    .StandaloneSessionCard {
        padding: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .AccordionContent,
    .ArrowIcon {
        transition: none;
    }
}