.schedule-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.schedule-item {
    background-color: #f8f9fa;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    overflow: hidden;
    width: 1200px; /* Retaining the original width */
    margin-left: -200px; /* Retaining the original margin */
}

.schedule-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background-color: white;
    cursor: pointer;

}

.schedule-header i {
    font-size: 24px;
    color: #0056b3;
}

.schedule-header span {
    /* flex-grow: 1; */
    margin-left: 15px;
    font-weight: bold;
}

.schedule-title {
    color: #c00;
}

.toggle-button {
    background-color: #002c53;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.toggle-button:focus {
    outline: none;
}

.schedule-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    padding: 0 15px;
    background-color: #fff;
}

.schedule-content img {
    max-width: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
    height: 90px;
}

.schedule-content p {
    margin: 0;
    padding-bottom: 15px;
    font-size: 14px;
}

.speakers {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.speaker-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
}

.speaker-item img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 10px;
}

.speaker-item p {
    font-size: 14px;
    color: #333;
}

.panel-chair {
    display: flex;
    align-items: center;
    text-align: center;
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
}

.panel-chair img {
    max-width: 50px;
    height: auto;
    border-radius: 50%;
    margin-right: 10px;
}

.panel-chair p {
    font-size: 14px;
    color: #333;
}

/* .image-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.image-item {
    flex: 1 1 calc(20% - 10px);
    max-width: calc(20% - 10px);
    text-align: center;
}

.image-item img {
    width: 100%;
    object-fit: cover;
} */



.name {
    font-weight: bold;
    margin: 5px 0;
}

.designation {
    font-size: 0.9em;
    color: gray;
}

/* Responsive design for smaller screens */
@media (max-width: 1200px) {
    .schedule-item {
        width: 100%; /* Adjust to fit within the screen */
        margin-left: 0; /* Remove negative margin */
    }

    .speakers {
        grid-template-columns: repeat(3, 1fr); /* Adjust grid layout */
    }
}

@media (max-width: 800px) {
    .speakers {
        grid-template-columns: repeat(2, 1fr); /* Further adjust grid layout */
    }

    .schedule-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

    .schedule-header span {
        margin-left: 0;
        font-size: 16px;
    }

    .toggle-button {
        width: 100%;
        padding: 10px;
    }

    .panel-chair {
        flex-direction: column;
        text-align: center;
    }

    .panel-chair img {
        margin-bottom: 10px;
        margin-right: 0;
    }

    .image-container {
        gap: 5px;
    }

    .image-item {
        flex: 1 1 calc(50% - 5px);
        max-width: calc(50% - 5px);
    }

    .schedule-content img {
        max-width: 60px;
        height: 70px;
    }

    .schedule-content p {
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    .speakers {
        grid-template-columns: repeat(2, 1fr);
    }

    .image-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
.tour-schedule-item {
    list-style: none;
    padding: 15px;
    border-bottom: 1px solid #ddd; /* Optional: for separating the items */
    background-color: #f9f9f9; /* Optional: light background for each item */
}

.tour-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.tour-time-col {
    flex-basis: 20%; /* Adjusts the width of the time column */
    padding: 10px;
    font-weight: bold;
    color: #333; /* Darker text color */
}

.tour-details-col {
    flex-basis: 80%; /* Adjusts the width of the details column */
    padding: 10px;
}

.tour-details-col h4 {
    margin: 5px 0;
    font-size: 1.1em; /* Slightly larger font size */
    font-weight: bold;
}

.tour-details-col span {
    color: #555; /* Dark grey color for the span text */
}

.tour-speaker {
    margin-bottom: 10px; /* Space between speaker and text */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .tour-time-col,
    .tour-details-col {
        flex-basis: 100%; /* Stack columns vertically on smaller screens */
        text-align: left;
    }
}
.itinerary-item {
    padding: 10px 15px;
    border: 1px solid #ddd;
    margin-bottom: 5px;
}

.itinerary-time {
    font-weight: bold;
    color: #333;
}

.itinerary-details h4 {
    margin: 0;
    font-weight: normal;
    color: #001d61;
}
.time-span {
    display: inline-block;
    margin-right: 15px;
    color: #555; /* Customize as needed */
    font-weight: normal;
}

.schedule-title {
    flex: 1;
    font-weight: bold;
    text-align: left; /* Aligns title to the left */
}
.schedule-container {
    display: flex;
    flex-direction: column;
}

.schedule-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
}

.schedule-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.schedule-header i {
    font-size: 20px;
    /* color: #007bff; */
    width: 26px;
}

.time-span {
    min-width: 150px;
    font-weight: bold;
}

.schedule-title {
    flex-grow: 1;
    font-weight: 600;
}

.toggle-button {
    margin-left: auto;
    /* background-color: #007bff; */
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
}