@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');
* {
    font-family: 'Roboto Mono', monospace;
}

body {
    margin: 0;
    background-color: #D5EEBB;
}

nav {
    background-color: #444941;
    color: #19f7bf;
    padding: 20px 15px;
}

.student_info {
    display: flex;
    justify-content: center;
}

.basic {
    border-right: 2px solid #9c8a8a;
    padding-right: 10px;
}

.other {
    padding-left: 10px;
    display: flex;
    align-items: center;
}

.col1,
.col2 {
    border-right: 2px solid #9c8a8a;
    padding-right: 10px;
}

.col2,
.col3 {
    padding-left: 10px;
}

.student_id,
.student_name,
.student_faculty {
    border-bottom: 2px solid #9c8a8a;
    padding-bottom: 5px;
}

.start_year,
.current_year,
.passed_hours {
    margin-bottom: 5px;
}

.courses {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    position: sticky;
    top: 0;
    background-color: #D5EEBB;
    padding: 25px;
}

.courses button {
    background: transparent;
    border-style: solid;
    margin: 0 10px;
    padding: 10px 25px;
    cursor: pointer;
    transition: 0.3s;
}

.courses button:hover {
    background-color: #84947a;
}

.add_course {
    background-color: #7FC8A9;
    padding: 15px;
    display: none;
}

.add_course1 {
    display: flex;
    flex-direction: column;
}

.add_course1 label {
    margin: 5px;
}

.add_course input,
.add_course select {
    background-color: #5da061;
    border: 2px solid #0c0b42;
}

.add_btn,
.clear_btn {
    background-color: #568370;
    border-style: solid;
    margin: 10px 10px 0;
    padding: 10px 25px;
    cursor: pointer;
    transition: 0.3s;
}

.add_btn:hover,
.clear_btn:hover {
    background-color: #84947a;
}

.add,
.clear {
    display: inline-block;
}

.current_courses {
    display: none;
    background-color: #5da061;
    padding: 15px;
    margin-top: 15px;
}

#course_type2 {
    background-color: #7FC8A9;
    border: 2px solid #0c0b42;
}

.current_courses div {
    margin-bottom: 10px;
}

.current_courses h1 {
    margin-top: 0;
}

.current_courses .courseName:hover {
    background-color: #437446;
}

.subject_info {
    border: 2px solid #213122;
    padding: 0 15px;
    display: none;
}

.all_courses {
    display: none;
    background-color: #368B85;
    padding: 15px;
    margin-top: 15px;
}

.all_courses #course_type2 {
    background-color: #5b6257;
    border: 2px solid #0c0b42;
}

.courseName {
    cursor: pointer;
    transition: 0.3s;
    padding: 0 10px;
}

.all_courses .courseName:hover {
    background-color: #2a6d68;
}

.all_courses2 div {
    margin-bottom: 10px;
}

.all_courses h1 {
    margin-top: 0;
}

.selectedSection {
    display: block;
}

.selectedButton {
    background-color: #d1974a !important;
}

.shownCourses {
    display: block;
}

@media (max-width: 480px) {
    * {
        font-size: 24px;
    }
    .basic {
        border: none;
        padding: 0;
    }
    .other {
        justify-content: center;
    }
    .student_info {
        flex-direction: column;
        text-align: center;
    }
    .student_major {
        border-bottom: 2px solid #9c8a8a;
        padding-bottom: 5px;
    }
    .navC {
        padding: 10px 15px;
    }
    .student_name,
    .student_faculty,
    .student_major {
        margin: 8px 0;
    }
}

@media (max-width: 768px){
    * {
        font-size: 20.8px;
    }
    .basic {
        border: none;
        padding: 0;
    }
    .other {
        justify-content: center;
    }
    .student_info {
        flex-direction: column;
        text-align: center;
    }
    .student_major {
        border-bottom: 2px solid #9c8a8a;
        padding-bottom: 5px;
    }
    .navC {
        padding: 10px 15px;
    }
    .student_name,
    .student_faculty,
    .student_major {
        margin: 8px 0;
    }
}

@media (max-width: 1025px){
    * {
        font-size: 18.4;
    }
    .basic {
        border: none;
        padding: 0;
    }
    .other {
        justify-content: center;
    }
    .student_info {
        flex-direction: column;
        text-align: center;
    }
    .student_major {
        border-bottom: 2px solid #9c8a8a;
        padding-bottom: 5px;
    }
    .navC {
        padding: 10px 15px;
    }
    .student_name,
    .student_faculty,
    .student_major {
        margin: 8px 0;
    }
}