
/*specific pages container*/
.home-custom-css{}
.community-custom-css{}
.agenda-custom-css{}
.speakers-custom-css{}

/*main container of each section*/
.main-app-container {}

/*
call-to-action buttons e.g:
Register, Join The Community etc
*/
.btn-register {}

/*Top navigation bar container*/
.template-nav {}

/*Top navigation bar items container*/
#bs-example-navbar-collapse-1 {}

/*social share buttons container*/
.social-share-button {}

/*social share buttons per social network*/
.social-share-button.facebook {}
.social-share-button.twitter {}
.social-share-button.linkedin {}
.social-share-button.google {}

/* Agenda Styles */
.agenda-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'EmberModernDisplayRegular', Arial, sans-serif;
}

.agenda-title {
    color: #232f3f;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.timeline-container {
    position: relative;
    padding-left: 50px;
}

.timeline-container:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #0578ff;
}

.agenda-item {
    margin-bottom: 2rem;
    position: relative;
}

.agenda-item:before {
    content: '';
    position: absolute;
    left: -54px;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0578ff;
    border: 2px solid #fff;
}

.time-bubble {
    display: inline-block;
    background: #0578ff;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.content-box {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 5px;
}

.content-box h3 {
    color: #232f3f;
    margin-top: 0;
}

.speaker {
    margin-top: 10px;
}

.speaker-role {
    font-size: 0.9em;
    color: #666;
}

.speaker-name {
    font-weight: bold;
}

.session-description {
    margin-top: 10px;
    font-size: 0.95em;
}

.featured .content-box {
    background: #e6f3ff;
    border-left: 4px solid #0578ff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .timeline-container {
        padding-left: 30px;
    }
    
    .agenda-item:before {
        left: -34px;
    }
}

/* Agenda Styles */
.custom-agenda {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'EmberModernDisplayRegular', Arial, sans-serif;
}

.agenda-heading {
    text-align: center;
    color: #232f3f;
    font-size: 36px;
    margin-bottom: 40px;
    position: relative;
}

.agenda-heading:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #0578ff;
}

.agenda-block {
    position: relative;
    margin-bottom: 30px;
    padding-left: 60px;
    border-left: 2px solid #0578ff;
}

.agenda-block:before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0578ff;
}

.time {
    display: inline-block;
    background: #0578ff;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.event-content {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.event-content.featured {
    background: #e6f3ff;
    border-left: 4px solid #0578ff;
}

.event-content h3 {
    color: #232f3f;
    margin: 0 0 10px 0;
    font-size: 20px;
}

.subtitle {
    color: #666;
    margin-bottom: 15px;
}

.speaker {
    margin: 15px 0;
}

.name {
    font-weight: bold;
    color: #232f3f;
    margin: 0;
}

.role {
    color: #666;
    margin: 5px 0 0 0;
    font-size: 14px;
}

.description {
    margin: 15px 0 0 0;
    line-height: 1.6;
}

.event-type {
    color: #666;
    font-style: italic;
    margin: 5px 0 0 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-agenda {
        padding: 15px;
    }
    
    .agenda-block {
        padding-left: 30px;
    }
    
    .agenda-heading {
        font-size: 28px;
    }
    
    .event-content {
        padding: 15px;
    }
}

/* Video Container Fixes */
#section-3483693 > div > div.main-app-container.custom-space-top.custom-space-bottom {
    padding: 0;
    height: 57vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent !important; /* Remove any background color */
    overflow: hidden;
}

#section-3483693 > div > div:nth-child(1) > video {
    height: 100%;
    width: 100%;
    object-fit: cover !important; /* Ensure video covers the container */
    background: transparent !important;
    display: block !important;
    min-width: 100%;
    min-height: 100%;
}

/* Additional video fixes */
video {
    object-fit: cover !important;
    background: transparent !important;
    display: block !important;
}

.video-container {
    background: transparent !important;
}

