.schedule-container {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    padding: 0;
    margin-top: 2rem;
}

.schedule-row {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease;
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-row:hover {
    background-color: #fcfcfc;
}


.time-col {
    flex: 0 0 200px;
    background-color: #f8f9fa;
    color: #2c3e50; 
    font-weight: 600;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid #eee;
    font-size: 0.95rem;
}


.event-col {
    flex: 1;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.event-heading {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}


.break-row .time-col {
    background-color: #e9ecef;
    color: #6c757d;
}
.break-row .event-heading {
    color: #666;
    font-style: italic;
}


.panel-row {
    border-left: 5px solid #0d6efd; 
}

.panel-badge {
    display: inline-block;
    background-color: #0d6efd;
    color: #fff;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 600;
    width: fit-content;
}

.panel-topic {
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.4;
}


.panel-people {
    background-color: #f8faff;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #eef2f7;
}

.moderator-block {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #dce4ec;
}

.role-label {
    font-weight: 700;
    color: #0d6efd; 
    margin-right: 8px;
    font-size: 0.95rem;
}

.person-name {
    color: #444;
    font-weight: 500;
}

.session-details {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.session-details li {
    margin-bottom: 6px;
    font-size: 0.95rem;
    color: #555;
    position: relative;
    padding-left: 15px;
}

.session-details li::before {
    content: "•";
    color: #0d6efd;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.panelist-list {
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
}

.panelist-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 4px;
    font-size: 0.95rem;
    color: #555;
}

.panelist-list li::before {
    content: "\f007"; 
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    font-size: 0.75rem;
    color: #aaa;
    top: 4px;
}


@media (max-width: 768px) {
    .schedule-row {
        flex-direction: column;
    }
    
    .time-col {
        flex: 0 0 auto;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 15px;
        background-color: #0d6efd;
        color: white;
        text-align: left;
        justify-content: flex-start;
    }
    
    .break-row .time-col {
        background-color: #6c757d;
    }

    .event-col {
        padding: 20px;
    }
    
    .panel-row {
        border-left: none;
    }
}