body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

header {
    background-color: #1a1a1a;
    color: #fff;
    padding: 15px 0;
    text-align: center;
}

nav ul {
    margin-top: 10px;
    margin-bottom: -5px;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 14px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding:5px;
    letter-spacing: 1px;
    word-spacing: 2px;
    /* border-radius: 2px; */
    /* transition: 0.4s; */
}

nav a:hover{
    /* background-color: white;
    color: black; */
    border-bottom: 2px solid white;
}

nav .comp img{
    display: flex;
    position: absolute;
    left:10px;
    top:10px;
    height: 60px;
}

nav .sco img{
    display: flex;
    position: absolute;
    right:10px;
    top:10px;
    height: 60px;
}


#schedule>div{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    margin-left: 10px;

}
#schedule h2{
    text-align: center;
    font-size: 35px;
}
#schedule>div>div{
    margin-top: 20px;
    font-style: italic;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}
#schedule h3{
    font-size: 15px;
    font-weight: bolder;
}
#schedule>div img{
    height: 50px;
    width: 40px;
    align-items: center;
    justify-content: center;
}
#schedule p{
    margin-top: -15px;
    font-size: 14px;
    font-weight: lighter;
    color:  rgb(67, 67, 67);
}

:root {
    --sidebar-bg: #f3f3f3;
    --active-bg: #1d1b4b;
    --active-text: #ffffff;
    --text-color: #333;
    --title-color: #1d1b4b;
    --card-bg: #ffffff;
    --border-radius: 12px;
    --shadow: 0 4px 20px rgba(0,0,0,0.07);
    --font-family: "Segoe UI", Arial, sans-serif;
}

.Text-container {
    background: #ffffff;
    border-radius: 10px;
    text-align: justify;
    padding-left: 80px;
    padding-right: 80px;
}

.Text-container h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #111;
}

.Text-container h2 {
    margin-top: 40px;
    font-size: 24px;
    color: #444;
}

.Text-container p,.Text-container li {
    font-size: 14px;
    margin-bottom: 15px;
}

.Text-container a {
    color: #0066cc;
    text-decoration: none;
}

.Text-container a:hover {
    text-decoration: underline;
}

.highlight-text >strong{
    font-weight: bolder;
}

.Text-container ol,.Text-container ul {
    padding-left: 25px;
}

.Text-container ul {
    margin-bottom: 50px;
}


.container {
    display: flex;
    height: 100vh;
    width: 90%;
    border-radius: 5px;
    align-items: center;
    margin: 20px auto;
    box-shadow: var(--shadow);
    margin-bottom: 50px;
}

.sidebar {
    width: 28%;
    background: var(--sidebar-bg);
    height: 93.8%;;
    border-radius: 5px;
    padding: 20px;
    overflow-y: auto;
    border-right: 1px solid #ddd;
}

.sidebar-title {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

.session-item {
    background: var(--card-bg);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.session-item:hover {
    transform: translateY(-2px);
}

.session-item.active {
    background: var(--active-bg);
    color: var(--active-text);
}
.content {
    width: 72%;
    padding: 35px 40px;
    height: 89%;
    overflow-y:auto;
}

.content-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--title-color);
    margin-bottom: 20px;
}

.topics-list li {
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 1.5;
}


.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    padding-top: 0px;
    border-top: 1px solid #ddd;
    background-color: #1a1a1a;
    color: white;
}
.footer-left {
    max-width: 50%;
}
.footer-left h3 {
    font-size: 18px;
    font-weight: bold;
}
.footer-left p {
    font-size: 14px;
    width: 70%;
}
.footer-left a {
    color: #9664c8;
    text-decoration: none;
    font-weight: bold;
}
.footer-left a:hover {
    text-decoration: underline;
}
.footer-right {
    text-align: right;
}
.footer-mid img {
    width: 120px;
}

.footer-right p {
    font-size: 14px;
}
.contact-info {
    font-size: 14px;
    font-weight: bold;
}
.contact-info a {
    color: #0073e6;
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}

.tracks {
    margin-left: 30px;
    margin-right: 30px;
}

.track h4::before{
    content: "";
    display: inline-block;
    width: 4px; /* Adjust thickness */
    height: 1em; /* Adjust height */
    background-color: blue; /* Change to your preferred color */
    margin-right: 8px; /* Adjust spacing */
    vertical-align: middle;
}

.chair {
    margin-bottom: 20px;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.chairs {
    display: flex;
    flex-wrap: wrap;
}

.chair {
    flex: 1;
    min-width: 200px;
    margin: 10px;
    text-align: center;
}

.chair img {
    width: 150px;
    height: 150;
    object-fit: cover;
    border-radius: 50%;
}


@media (max-width:500px){
    nav ul{
        margin-top: 10px;
        margin-bottom: -5px;
        list-style: none;
        padding: 0;
        display: flex;
        justify-content: center;
        gap:0.5px;
        font-size: 7px;
    }
    #schedule>div{
        display: flex;
        flex-direction: column;
        margin-left: 10px;
    
    }
    .logo{
        margin-bottom: 15px;
    }
    .logo h4{
        margin-top: 0px;
        font-size: 10px;
    }

    .logo .comp img{
        margin-top: -10px;
        height: 50px;
        width: 50px;
    }

    .logo .sco img{
        height: 30px;
    }
}