* {
    margin: 0;
    box-sizing: border-box;
}
/* CSS for container */
.container {
    width: 100%;
    height: 140vh;
    display: flex;
    flex-direction: row;
}

.profile {
    width: 20%;
    border-right: 1px solid black;
}

.data {
    width: 80%;
}
/* Profile */
.user-id {
    padding-top: 40px;
    width: 100%;
    height: 40vh;
    /* background-color: #0cf30cb0; */
}
.user-id .name {
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.name p {
    background-color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 45px;
    font-weight: bold;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.321);
}

.id-name {
    margin-top: 15px;
    height: 35px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.id-name p {
    font-weight: bold;
}

.id-name span {
    font-weight: bold;
    margin-left: 5px;
}

.id-num {
    height: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}


/* CSS for menu */
.menu {
    height: 65vh;
    width: 100%;
}

.option ul li {
    font-family: 'Roboto', sans-serif;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    height: 50px;
    padding-left: 60px;
}
 ul li a{
    color: black;
    text-decoration: none;
}

.option ul li:hover {
    cursor: pointer;
    background-color: lightgrey;
}

.material-symbols-outlined {
    padding: 0 10px;
}

.fa-blog {
    padding: 0 10px 0 13px;
}

.dash {
    background-color: lightgrey;
}

/* CSS for premium */
.premium {
    height: 50px;
    width: 80%;
    margin: 0 auto;
    /* background-color: aqua; */
    box-shadow: 0 2px 3px gray;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.premium p {
    font-size: 14px;
    margin: 0 auto;
    width: 90%;
}

.premium span {
    font-weight: bold;
}

.premium button {
    font-size: 14px;
    width: 30%;
    background-color: orange;
    border: none;
    border-radius: 2px;
    margin: 10px auto;
}

/* CSS for logo */
.logo {
    height: 50px;
    width: 80%;
    margin: 40px auto 0 auto;
    background: url(logo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


/* CSS for data  part*/
.data {
    padding: 40px 40px 0px 40px;
}

.views-notification {
    height: 60vh;
    width: 100%;
    display: flex;
}

.view-graph {
    width: 75%;
    background-color: white;
    height: 60vh;
}

.part-1 {
    height: 30%;
    width: 100%;
    display: grid;
    grid-template-columns: 25% 25% 25%;
    grid-gap: 50px;

}

.part-1 .box {
    height: 100%;
    font-size: 12px;
    padding: 5px 5px;
    box-shadow: 0px 0.3px 2px rgba(127, 117, 117, 0.436);
    font-family: 'Roboto', sans-serif;
    border-radius: 3px;
}

/* CSS for student join box */
.part-1 .box .numdata {
    display: flex;
    height: 70%;
    justify-content: center;
    align-items: center;

}

.numdata .one-two {
    width: 60%;
    font-size: 30px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.numdata .increase {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
}

.increase span {
    width: 30%;
    color: green;
    margin: 0 2px;
}

/* CSS for graph data */
.graph-data {
    height: 70%;
    width: 100%;
    /* border: 1px solid black; */
    margin-top: 10px;
    background-color: white;
    background: url(graph.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* CSS for notification */
.notification {
    height: 97%;
    width: 25%;
    padding: 7px 5px;
    background-color: white;
    margin-left: 15px;
    box-shadow: 0px 2px 2px gray;
}

.notification-title {
    /* background-color: red; */
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    padding: 0px 5px;
    display: flex;
    align-items: center;
}

.notification-title .icon {
    padding: 0px 5px;
    height: 100%;
    width: 20px;
    /* background-color: white; */
}

.noti-msg {
    background-color: white;
    height: 90%;
    width: 100%;
    font-family: 'Roboto', sans-serif;
}

.noti-msg ul li {
    border-bottom: 1px solid black;
    font-size: 14px;
    padding: 3px 2px;
}

.noti-msg ul li:hover {
    background-color: lightgrey;
    cursor: pointer;
}

.noti-msg ul li span {
    font-weight: bold;
}

.noti-more {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: right;
    padding: 2px 4px;
}

.noti-more:hover {
    color: blue;
    cursor: pointer;
    text-decoration: underline;
}


/* CSS for course and room */
.course-room {
    margin-top: 30px;
    width: 100%;
    height: 65vh;
    display: flex;
}

.left-part {
    width: 25%;
    height: 100%;
    /* background-color: cyan; */
}

.right-part {
    width: 75%;
    border: 1px solid black;
    height: 100%;
    margin-left: 20px;
}

.aviable-course {
    height: 20%;
    width: 100%;
    background-color: white;
    box-shadow: 0px 2px 2px gray;

}

.course {
    font-family: 'Roboto', sans-serif;
    height: 30%;
    width: 100%;
    /* box-shadow: 0px 2px 2px gray; */
    display: grid;
    grid-template-columns: 70% 30%;
    padding: 5px 5px;
    font-size: 14px;
    border-bottom: 2px solid lightgray;
}

.course .icon {
    font-size: 14px;
    height: 100%;
    display: flex;
    justify-content: right;
    align-items: center;
    color: rgba(0, 0, 0, 0.703);
}

.science-course {
    width: 100%;
    height: 70%;
    display: flex;
}

.science-course p {
    width: 50%;
    font-family: 'Roboto', sans-serif;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.science-course p:hover {
    background-color: lightgrey;
    cursor: pointer;
}

.book-downloaded {
    height: 20%;
    width: 100%;
    margin-top: 5px;
}

.book-downloaded {
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    padding: 3px 3px;
    background-color: white;
    box-shadow: 0px 2px 2px gray;
}

.book-downloaded .details {
    text-align: right;
    padding: 0 5px 2px 0;
}

.book-downloaded .details:hover {
    text-decoration: underline;
    color: blue;
    cursor: pointer;
}

.book-number {
    height: 50%;
    width: 100%;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.write-somehing {
    margin-top: 5px;
    height: 57%;
    width: 100%;
    padding: 5px 3px;
    box-shadow: 0px 2px 2px gray;

}

.write-somehing p {
    font-family: 'Roboto', sans-serif;
}

.college-msg p {
    text-align: justify;
    margin-top: 5px;
    font-size: 12px;
    padding: 5px 3px;
    width: 100%;
    background-color: rgba(9, 247, 180, 0.66);
}

/* CSS for right part */
.right-part {
    height: 100%;
    border: none;
}

/* CSS for course of bacholer */
.course-bachlore {
    box-shadow: 0px 2px 2px gray;
    height: 20%;
    width: 100%;
}

.course-for-bachlore {
    display: flex;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    width: 100%;
    height: 40%;
    border-bottom: 2px solid lightgray;
}

.course-for-bachlore p {
    padding: 0 5px;
    width: 80%;
    height: 100%;
    align-items: center;
    display: flex;
}

.course-for-bachlore i {
    display: flex;
    align-items: center;
    justify-content: right;
    padding: 0 20px;
    width: 20%;
    height: 100%;
    color: rgba(0, 0, 0, 0.629);

}

.all-course {
    height: 60%;
    width: 100%;
}

.all-course ul {
    display: flex;
    flex-direction: row;
    height: 100%;
}

.all-course ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 17%;
}

.all-course ul li:hover {
    background-color: lightgray;
    cursor: pointer;
}

/* CSS for class department */
.class-room {
    margin-top: 20px;
    height: 75%;
    width: 100%;
    background-color: rgba(9, 247, 180, 0.66);
}

.create-class {
    height: 20%;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0px 10px;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
}

.create-class i {
    margin-left: 10px;
}

.class-room-data {
    height: 80%;
    display: grid;
    grid-template-columns: 23% 23% 23% 23%;
    grid-gap: 15px;
    justify-content: center;
}

.class {
    margin-top: 10px;
    height: 80%;
    background-color: white;
    font-family: 'Roboto', sans-serif;
    padding: 5px 5px;
    box-shadow: 0px 2px 2px gray;
}

.class p {
    padding: 8px 0px;
}

.class .hod {
    font-weight: bold;
    font-size: 18px;

}

.class button {
    margin-top: 15px;
    border: none;
    width: 50%;
    background-color: rgb(47, 242, 47);
    border-radius: 3px;
    height: 15%;
}

.class button:hover {
    color: white;
    cursor: pointer;
}

/* Media qaury for mobile */
/* CSS for mobile */

@media (max-width:470px) {

    .profile {
        width: 25%;
        padding: 0 3px 0 0;
        border-right: 2px solid rgba(128, 128, 128, 0.648);
    }

    .user-id {
        height: 20%;
    }

    .name {
        width: 100%;
        margin: 0 auto;
    }

    .name p {
        width: 80%;
        margin: 0 auto;
        /* background-color: orange; */
    }

    .id-name {
        display: flex;
        overflow: hidden;
    }

    .id-name p {
        font-size: 14px;
        width: 60%;
        text-align: center;
    }

    .id-name span {
        width: 10%;
        margin-left: 0;
        font-size: 14px;
        margin-right: 5px;
    }

    .id-num {
        font-size: 8px;
    }

    .option ul li {
        padding: 0 5px;
        font-size: 14px;
    }

    .option ul span {
        padding-left: 0;
        font-size: 14px;
        display: none;
    }

    .menu {
        height: 33%;
    }

    .item i {
        display: none;
    }

    /* CSS of premium */
    .premium {
        width: 90%;
        margin-top: 20px;
    }

    .premium p {
        font-size: 8px;
        width: 100%;
        padding: 4px 2px;
    }

    .premium button {
        font-size: 8px;
        width: 50%;
        padding: 0.5px 1px;
    }

    .logo {
        width: 100%;
    }

    /* CSS for dash-board data */
    .data {
        overflow-x: hidden;
        width: 75%;
        margin: 0;
    }
    .one-two{
        font-size: 22px;
    }

    .views-notification {
        display: flex;
        flex-direction: column;
        /* background-color: orange; */
        height: auto;
    }

    .view-graph {
        display: flex;
        flex-direction: column;
        /* background-color: orange; */
        width: 100%;
        height: auto;
    }

    .part-1 {
        display: flex;
        flex-direction: column;
        /* background-color:red; */
        height: 70vh;
        width: 100%;
        margin: 10px 0px;
    }

    .box {
        /* border: 2px solid black; */
        /* height: 100%; */
        background-color: white;
    }

    .graph-data {
        background: none;
    }

    .notification {
        /* background-color: orange; */
        width: 100%;
        margin: 0 auto;
    }

    .course-room {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .left-part {
        width: 100%;
    }

    .aviable-course {
        height: 40%;
    }

    .book-downloaded {
        margin-top: 20px;
    }

    .write-somehing {
        margin-top: 22px;
    }

    .right-part {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-left: 0px;
    }

    .course-bachlore {
        width: 100%;
        height: auto;
        margin: 30px 0px;
        height: 30%;
    }

    .all-course ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .all-course ul li {
        text-align: center;
        width: 100%;
        padding: 5px;
    }

    .class-room {
        width: 100%;
    }

    .create-class {
        padding: 10px 5px;
    }

    .class-room-data {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .class button {
        width: 70px;
    }
}

@media (min-width:470px) and (max-width:600px) {

    .profile {
        width: 25%;
        padding: 0 3px 0 0;
        border-right: 2px solid rgba(128, 128, 128, 0.648);
    }

    .user-id {
        height: 20%;
    }

    .name {
        width: 100%;
        margin: 0 auto;
    }

    .name p {
        width: 60%;
        margin: 0 auto;
        /* background-color: orange; */
    }

    .id-name {
        display: flex;
        overflow: hidden;
    }

    .id-name p {
        font-size: 18px;
        width: 60%;
        text-align: center;
    }

    .id-name span {
        width: 10%;
        margin-left: 0;
        font-size: 18px;
        margin-right: 5px;
        position: relative;
        left: -10px;
    }

    .id-num {
        font-size: 10px;
    }

    .option ul li {
        padding: 0 25px;
        font-size: 14px;
        display: flex;
        align-items: center;
    }

    .option ul span {
        padding-left: 0;
        display: none;
    }

    .menu {
        height: 33%;
    }

    .item i {
        display: none;
    }

    /* CSS of premium */
    .premium {
        width: 90%;
        margin-top: 20px;
    }

    .premium p {
        font-size: 8px;
        width: 100%;
        padding: 4px 2px;
    }

    .premium button {
        font-size: 8px;
        width: 50%;
        padding: 0.5px 1px;
    }

    .logo {
        width: 100%;
    }

    /* CSS for dash-board data */
    .data {
        overflow-x: hidden;
        width: 75%;
        margin: 0;
    }
.one-two{
    font-size: 22px;
}
    .views-notification {
        display: flex;
        flex-direction: column;
        /* background-color: orange; */
        height: auto;
    }

    .view-graph {
        display: flex;
        flex-direction: column;
        /* background-color: orange; */
        width: 100%;
        height: auto;
    }

    .part-1 {
        display: flex;
        flex-direction: column;
        /* background-color:red; */
        height: 70vh;
        width: 100%;
        margin: 10px 0px;
    }

    .box {
        /* border: 2px solid black; */
        /* height: 100%; */
        background-color: white;
    }

    .graph-data {
        background: none;
    }

    .notification {
        /* background-color: orange; */
        width: 100%;
        margin: 0 auto;
    }

    .course-room {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .left-part {
        width: 100%;
    }

    .aviable-course {
        height: 40%;
    }

    .book-downloaded {
        margin-top: 20px;
    }

    .write-somehing {
        margin-top: 22px;
    }

    .right-part {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-left: 0px;
    }

    .course-bachlore {
        width: 100%;
        height: auto;
        margin: 30px 0px;
        height: 30%;
    }

    .all-course ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .all-course ul li {
        text-align: center;
        width: 100%;
        padding: 5px;
    }

    .class-room {
        width: 100%;
    }

    .create-class {
        padding: 10px 5px;
    }

    .class-room-data {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .class button {
        width: 70px;
    }
}