 header{
    background-color: #8ac3ba;
    display:flex;
    align-items: center;
    padding:0px 20px;
    height:60px;
    position: sticky;
    top:2px;
    z-index: 1000;
}
body{
    padding-bottom:500px;
}
#contentbaap{
        display:flex;
        justify-content: space-between;
        width: 100%;
    }
#menu-btn{
    height:30px;
    width:30px;
    cursor:pointer;
}
#photo
{
    height:30px;
    width:30px;
    cursor: pointer;
}

#logo{
    padding:0px 0px 0px 0px;
    height:30px;
    width:60px;
    border:2px solid black;
}
.headercontent{
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
} 
#content{
    display:flex;   
    justify-content: center;
    background-color: brown;
}
#form{
    display:flex;
    justify-content: center;
}
#outer-box{
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border:2px solid black;
    border-radius: 10px;
    padding: 20px;
    background-color: rgb(239, 220, 220);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    height: auto; 
    width: 350px;
    text-align: center;
}
#submit{
    margin-top: 5px;
}
#display{
    display:flex;
    justify-content: center;
}
#menu-btn {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}
#sidebar{
    display:flex;
    flex-direction: column;
    position:fixed;
    top:67px;
    width:250px;
    height:50%;
    background: rgba(0, 0, 0, 0.5); /* Transparent black */
    backdrop-filter: blur(9px); /* Apply blur effect */
    color:white;
    padding-top: 50px;
    transition:0.3s;
    left: -250px;
}
#sidebar a {
    padding:10px;
    text-decoration: none;
    color:white;
    font-size: 18px;
    display:block;
}
#sidebar a:hover{
    background-color: rgb(119, 221, 236,0.5);
    backdrop-filter: blur(5px);
}
@media screen and (max-width: 768px) {
    #contentbaap a  {
        display: none;
    }
    
    #menu-btn,#photo {
        display: block;
    }
}
@media screen and (min-width: 769px) {
    #sidebar {
        display: none;
    }
}
.dark_mode
{
    background-color: black;
    color:white;
}
#gradecontent{
    display: inline-block;
    text-align: center;
    font-size: x-large;
    font-weight: 800;
    background-color: white;
    width:100%;
    color: rgb(15, 18, 18);
}
 .column-box{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:8px;
    margin-bottom:10px;
}

.grade,.credits{
    border:2px solid black;
    padding:7px;
    text-align: center;
    border-radius:8px;
    background-color: cyan;
}
.grade:hover,.credits:hover{
    cursor:pointer;
}
#add{
    cursor:pointer;
    position:absolute;
    margin:10px;
    right: 5px;
    height:30px;
    width:25px;
}
#add:hover{
    transform: scaleX(1.2);
    transition:0.6s;
}
#displaysgpa{
    text-align:center;
    font-weight: 300;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: aquamarine;
    color:black;
}
#final{
    cursor: pointer;
    background-color: green;
    border-radius: 5px;
    padding:5px;
}
#submitlast{
    display:flex;
    justify-content: center;
}

