.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;
}

.cs-speakers {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cs-speaker-img {
    width: 60px;
    height: 60px !important;
    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;
    }
}