﻿.schedule {
    width:100%;
    margin: 30px auto;
    background-color: white;
    padding: 20px;
    padding-top:90px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


.event {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #ccc;
}

.time {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    color: #1F4E79;
    flex-basis: 25%;
}

.details {
    flex-basis: 70%;
    font-size: 18px;
    color: #1F4E79;
}



/* Highlighted rows */
.highlight .details {
    color: #D10000;
}

.highlight .sub-details {
    color: #FF6600;
}

/* Workshops */
.workshop .details {
    color: #FFB400;
}

.redis {
    color: #D10000;
}


/* Panel discussion */
.panel-discussion .details {
    color: #FFB400;
}

.panel-discussion ol {
    padding-left: 20px;
    margin-top: 5px;
}

    .panel-discussion ol li {
        list-style-type: decimal;
        font-size: 16px;
        color: #1F4E79;
    }


.workshop ul {
    padding-left: 20px;
    margin-top: 5px;
}

    .workshop ul li {
        list-style-type: disc;
        font-size: 16px;
        color: #1F4E79;
    }

ol {
    margin-top: 10px;
}

    ol li {
        font-size: 16px;
        color: #1F4E79;
    }

.sub-details {
    font-size: 16px;
}




.schedule::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    height: 70px;
    padding: 20px;
    text-align: center;
    font-size: 32px;
    color: #FFB400;
    font-weight: 700;
    margin: 30px 20px;
    border-radius: 10px 10px 0 0;
    line-height: 30px;
}

.day-1::before {
    content: 'Day-1 Activities';
    background-color: #323b89;
}

.day-2::before {
    content: 'Day-2 Activities';
    background-color: #579e7e;
}