body{
    padding: 0;
    margin: 0;
    display: flex;
    font-family: sans-serif;
}

/* Basic styling for the page */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
}
.option-content{
    height: 70%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}


/* .container-fluid {
    padding: 15px;
} */

/* Left options section styles */
.left-options{
    width: 20%;
    height: 100vh;
    background-color: rgb(7, 7, 85);
}
.left-options a {
    color: #fff;
}


.links{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;padding-right: 20px;
    height: 50%;
    width: 100%;
}

.links li:hover{
    transform: scale(1.1);
}

.links li a:hover{
    color: wheat;
}

.links li{
    list-style: none;
}

.option-content a{
    text-decoration: none;
    color: white;
    font-size: 15px;
}
.option-content h2 a{
    font-size: 30px;
}
.main{
    width: 80%;
    height: 100vh;
    background-color: #c9c7c7cc;
    /* border: 1px solid purple; */
    display: flex;
    flex-direction: column;
}
.title{
    width: 100%;
    height: 10vh;
    /* padding: 5px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 5px;
    background: white;
    /* border: 1px solid goldenrod; */
}
.main-body{
    width: 98%;
    margin: 10px 10px;
    /* border: 1px solid rgb(66, 39, 139); */
}

.schedule-item {
    border: 6px solid white;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.schedule-item h4 {
    color: #333;
    margin-bottom: 10px;
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
    .left-options {
        font-size: 14px;
    }

    .main {
        font-size: 16px;
    }

    .title h2 {
        font-size: 24px;
    }

    .schedule-item {
        padding: 10px;
    }

    .option-content a{
        text-decoration: none;
        color: white;
        font-size: 13px;
    }
    .option-content h2 a{
        font-size: 15px;
    }
}

