.timetable{

    width:100%;
    display:flex;
    justify-content:center;
    margin-top:40px;

}

.setup-card{

    width:90%;
    max-width:500px;

    background:#fff;

    border-radius:20px;

    padding:30px;

    display:flex;
    flex-direction:column;
    gap:20px;

    box-sizing:border-box;

}

.selectinput{

    display:flex;
    flex-direction:column;

}

.selectinput label{

    font-weight:600;

    margin-bottom:8px;

    color:#1d1d1d;

}

.selectinput select{

    width:100%;

    height:48px;

    padding:10px;

    border-radius:10px;

    border:1px solid #d0d0d0;

    font-size:16px;

    box-sizing:border-box;

}

.submitbutton{

    width:100%;

    height:50px;

    border:none;

    border-radius:10px;

    background:#244A99;

    color:white;

    font-size:17px;

    cursor:pointer;

    transition:.3s;

}

.submitbutton:hover{

    background:#17346f;

}
/* ===========================================
   ELECTIVE SETUP
=========================================== */

.elective-section{

    display:none;

    width:90%;
    max-width:700px;

    margin:40px auto;

    background:#ffffff;

    border-radius:20px;

    padding:30px;

    box-sizing:border-box;

}

.elective-section h2{

    color:#244A99;

    margin-bottom:10px;

}

.elective-text{

    color:#666;

    margin-bottom:25px;

}





.elective-option{
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:12px;
    border-radius:8px;
    cursor:pointer;
    transition:.2s;
    box-sizing:border-box;
}

.elective-option input{
    flex:0 0 22px;
    width:22px;
    height:22px;
    margin:2px 0 0 0;
}

.elective-option span{
    flex:1;
    min-width:0;
    font-size:16px;
    line-height:1.35;
}

.elective-option:hover{

    background:#f5f8ff;

}

