/* Intro text styles */
.intro {
    font-family: Arial, sans-serif;
    font-size: 1.2em;
    color: #333;
    background: linear-gradient(to bottom, #f0f0f0, #ffffff);
    padding: 20px;
    line-height: 1.5;
    margin: 20px 0;
    text-align: center;
    background-color: #dddddd;
}

/* Class details styles */
details{
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin: 10px 0;
    width: 100%;
    box-shadow: 5px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Box for each class */
.class_box{
    font-family: arial, sans-serif;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

/* General box for each day */
.box{
    border: #ccc solid 1px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    padding: 5px;
    margin: 1%;
    box-shadow: 5px 0px 10px #293738;
}

/* Day title */
.day{
    font-weight: bold;
    font-size: 1.2em;
    color: white;
    text-align: center;
    background-color: #168389;
    padding: 3%;
    border-radius: 5%;
}