
/* Styling for Each Schedule Block */
.schedule {
    background: rgba(0, 0, 0, 0.8); /* Slightly darker background for individual blocks */
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Styling for Time */
.schedule .time {
    font-size: 18px;
    color: #ff5722; /* Orange accent for the time */
    font-weight: bold;
    margin-bottom: 10px;
}

/* Styling for Event Title */
.schedule .event {
    font-size: 20px;
    color: #ffffff; /* Bright white for event titles */
    font-weight: bold;
    margin-bottom: 10px;
}

/* Styling for Location and Chair */
.schedule .location,
.schedule .chair {
    font-size: 16px;
    color: #bdbdbd; /* Softer gray for less important text */
    margin-bottom: 10px;
    font-style: italic;
}

/* Styling for Additional Details */
.schedule p {
    font-size: 16px;
    color: #e0e0e0; /* Light gray for paragraph text */
    line-height: 1.6;
}

/* Sessions List Styling */
.schedule .sessions {
    margin-top: 15px;
    padding: 15px;
    background: rgba(30, 30, 30, 0.8); /* Nested section background */
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Sessions Title and Speakers */
.strong {
    font-size: 18px;
    color: #ff5722; /* Accent color for session time */
}

.schedule .sessions em {
    font-size: 16px;
    color: #e0e0e0; /* Softer gray for session title */
    display: block;
    margin-bottom: 5px;
}

.schedule .sessions span {
    font-size: 14px;
    color: #cccccc; /* Softer text for speakers */
}


@media (max-width: 768px) {

/* Styling for Event Title */
.schedule .event {
    font-size: 16px;
    color: #ffffff; /* Bright white for event titles */
    font-weight: bold;
    margin-bottom: 10px;
}

/* Styling for Location and Chair */
.schedule .location,
.schedule .chair {
    font-size: 12px;
    color: #bdbdbd; /* Softer gray for less important text */
    margin-bottom: 10px;
    font-style: italic;
}

/* Styling for Additional Details */
.schedule p {
    font-size: 12px;
    color: #e0e0e0; /* Light gray for paragraph text */
    line-height: 1.6;
}
}
