.cs-schedule-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1a1a1a;
    max-width: 1200px;
    margin: 0px auto;
    padding: 20px;
    background-color: transparent;
    /* Assuming parent has the #efebe6 background */
}

.cs-tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    border-bottom: 1px solid #d0ccc7;
    justify-content: center;
    align-items: center;
}

.cs-tab {
    padding: 15px 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: #1a1a1a;
    position: relative;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.3s ease;
}

/* Vertical dividers between tabs */
.cs-tab:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 14px;
    width: 1px;
    background-color: #d0ccc7;
}

.cs-tab:hover {
    color: #934b3e;
}

.cs-tab.active {
    color: #934b3e;
    border-bottom: 2px solid #934b3e;
}

/* Schedule Items */
.cs-tab-pane {
    display: none;
}

.cs-tab-pane.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.cs-schedule-item {
    display: flex;
    padding: 40px;
    margin-bottom: 20px;
    background-color: #ffffff;
    /* Each schedule item now has a white background */
}

.cs-item-left {
    flex: 0 0 20%;
    padding-right: 30px;
}

.cs-item-right {
    flex: 0 0 80%;
}

.cs-time {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.cs-location {
    color: #8b8b8b;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
}

.cs-title {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.cs-desc {
    margin-bottom: 25px;
    line-height: 1.6;
    color: #8b8b8b;
    font-size: 14px;
    max-width: 800px;
}

.cs-desc p {
    margin: 0 0 10px 0;
}

.cs-desc p:last-child {
    margin-bottom: 0;
}

/* Speaker Grid - 5 columns desktop, 2 columns mobile */
.cs-program-speakers {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.cs-program-speakers a {
    display: block;
}

.cs-program-speaker-img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
    border-radius: 50% !important;
    object-fit: cover;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .cs-schedule-item {
        flex-direction: column;
        padding: 20px;
    }

    .cs-item-left,
    .cs-item-right {
        flex: 1 1 auto;
    }

    .cs-item-left {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .cs-tabs {
        flex-wrap: wrap;
    }

    .cs-tab {
        padding: 10px 15px;
    }

    .cs-tab::after {
        display: none;
    }

    .cs-program-speakers {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Speaker Programs List Styles */
.cs-speaker-programs {
    margin-top: 30px;
}

.cs-speaker-programs-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.cs-speaker-programs-list {
    list-style-type: disc !important;
    padding-left: 20px !important;
    margin: 15px 0 !important;
}

.cs-speaker-programs-list li {
    margin-bottom: 8px !important;
    list-style-type: disc !important;
    display: list-item !important;
    color: #1a1a1a;
    font-size: 16px;
}

.cs-speaker-programs-list li a {
    color: #934b3e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cs-speaker-programs-list li a:hover {
    color: #1a1a1a;
    text-decoration: underline;
}
