/* VenJS 5.0 starter stylesheet */
@media screen and (min-width: 900px){
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
   overflow-y:scroll;
}

.body{
    width: 100%;
    height: 100vh;
    background-color: rgb(214, 214, 255);
    display: flex;
    align-items: center;
    padding: 10px;
    justify-content: center;
}

.form{
    width: 400px;
    height: 600px;
    background-color: white;
    border-radius: 8px;
    padding: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.logo{
    width: 100px;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

.input{
    width: 360px;
    height: 40px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgb(230, 230, 230);
}

.btn{
    width: 90%;
    height: 40px;
    border-radius: 10px;
    border: none;
    background-color: blue;
    color: white;
    cursor: pointer;
}

.footer-txt{
    font-size: 13px;
    display: flex;
    gap: 3px;
}

.highlight{
    color: blue;
    cursor: pointer;
}











/*
------------------------------
 App.js stylings
------------------------------
*/

.top{
    width: 100%;
    height: 70px;
    background-color: white;
    border-bottom: 1px solid rgb(233, 233, 233);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
}

.info{
    width:100px auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.p-avatar{
    width: 30px;
    height: auto;
}

.main{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

nav{
    width: 22%;
    height: 100vh;
    background-color: rgb(241, 241, 241);
    display: flex;
    align-items: center;
    
    flex-direction: column;
    gap: 10px;
    padding: 1em;
}

.tab{
    width: 95%;
    height: 50px;
    background-color: rgb(247, 247, 247);
    border-radius: 6px;
    padding: 1em;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    border: none;
    color: inherit;
    font: inherit;
}

.tab:hover{
    background-color: rgb(141, 141, 252);
    color: rgb(243, 242, 242);
}

.active{
    background-color: blue;
    color: white;
}



.tab-l{
    width: 95%;
    height: 50px;
    background-color: rgb(247, 247, 247);
    border-radius: 6px;
    padding: 1em;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    margin-top: 200px;
}

.tab-l:hover{
    background-color: rgb(250, 153, 153);
    color: rgb(248, 247, 247);
}

.container{
    padding: 1em;
    width: 100%;
    height: auto;
}

aside{
    width: 78%;
    height: auto;
}

.box{
    width: 500px;
    height: 100px;
    border-radius: 10px;
    background-color: rgb(90, 90, 235);
    padding: 1em;
    color: rgb(248, 248, 248);
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.msg{
    font-size: 1.3em;
}

.class-info{
    font-size: 13px;
}

.performance-list{
    width: 90%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: 30px auto;
}

.p-box{
    width: 170px;
    height: 90px;
    background-color: rgb(238, 238, 238);
    border-radius: 5px;
    padding: 1em;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.p-box-v{
    width: 170px;
    height: 90px;
    background-color: rgb(119, 119, 190);
    border-radius: 5px;
    padding: 1em;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: rgb(248, 248, 248);
}

.p-name{
    font-size: 16px;
    font-weight: 600;
}

.p-score{
    font-size: 14px;
}


.available{
    width: 90%;
    height: 300px auto;
    background-color: white;
    border: 1px solid rgb(226, 226, 226);
    margin: 20px auto;
    padding: 1em;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cbt-slip{
    width: 100%;
    height: 70px;
    border: 1px solid rgb(240, 239, 239);
    display: flex;
    gap: 10px;
    padding: 10px;
}

.icon{
    background-color: rgb(193, 193, 224);
    padding: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    width: 60px;
}

.asss{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 60px;
}

.assessment-info{
    display:flex;
    flex-direction: column;
}

.controls{
  display: flex;
  flex-direction: column;
  height:60px ;
  gap: 3px;
  padding: 5px;
}

.due{
    font-size: 12px;
    color: blue;
}

.st-btn{
    width: 80px;
    height: 30px;
    border-radius: 30px;
    border: 1px solid blue;
    background-color: white;
    cursor: pointer;
}

.Assessment-title{
    font-weight: 600;
}

.ass-type{
    font-size: 12px;
}

/*
----------------------
App Assessments style
----------------------
*/

.cm-ass{
    width: 90%;
    height: auto;
    padding: 1em;
    border-radius: 10px;
    border: 1px solid rgb(233, 233, 233);
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 30px auto;
}

/*
----------------------
App Exams style
----------------------
*/

.exam-card{
    width: 70%;
    height: 150px;
    border: 1px solid blue;
    border-radius: 10px;
    display: flex;
    margin: 30px auto;
    padding: 1em;
    flex-direction: column;
}

.card-top{
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.i-f{
    width: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.e-icon{
    width: 35px;
    padding: 5px;
    background-color: rgb(143, 143, 209);
    border-radius: 5px;
}

#trm{
    font-weight: 600;
}

#cre{
    font-size: 14px;
}

.o-badge{
    padding: 5px;
    border-radius: 10px;
    background-color: rgba(142, 255, 142, 0.603);
    font-size: 12px;
}

.c-badge{
    padding: 5px;
    border-radius: 10px;
    background-color: rgba(241, 49, 49, 0.623);
    font-size: 12px;
}

.middle{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.time{
    display: flex;
    justify-content: space-between;
    gap:6px;
}

.bottom{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.star-bn{
    width: 80%;
    height: 30px;
    border-radius: 6px;
    border: none;
    background-color: blue;
    color: white;
    margin: 10px auto;
    cursor: pointer;
}

.middle p{
    font-size: 13px;
}

.middle i{
    color: blue;
}

button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.field-stack {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mode-switch {
    width: 90%;
    height: 42px;
    padding: 4px;
    border-radius: 10px;
    border: 1px solid rgb(226, 226, 226);
    background: rgb(247, 247, 247);
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.mode-btn {
    flex: 1;
    border: none;
    border-radius: 7px;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    color: rgb(78, 78, 78);
}

.active-mode {
    background: blue;
    color: white;
}

.link-btn {
    border: none;
    background: transparent;
    color: blue;
    cursor: pointer;
    font-weight: 600;
    padding: 0;
}

.error-text {
    width: 90%;
    padding: 10px;
    border-radius: 8px;
    background: rgb(255, 238, 238);
    color: rgb(170, 32, 32);
    font-size: 13px;
    text-align: center;
}

.empty-state {
    padding: 18px;
    border: 1px dashed rgb(220, 220, 220);
    border-radius: 8px;
    color: rgb(105, 105, 105);
    font-size: 14px;
}

.page-spacer {
    height: 88px;
}

.compact-form {
    height: 260px;
}

.muted-tab {
    color: rgb(90, 90, 90);
}

.done-badge {
    padding: 5px;
    border-radius: 10px;
    background-color: rgba(94, 121, 255, 0.15);
    color: blue;
    font-size: 12px;
}

.mark {
    font-size: 12px;
    color: rgb(18, 126, 62);
    font-weight: 700;
}

.tab-l {
    border: none;
}

.u-name p {
    white-space: nowrap;
}

.play-workspace {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.play-sidebar {
    width: 260px;
    flex-shrink: 0;
}
.play-content {
    flex: 1;
}
}



























/*

@media (max-width: 820px) {
    .form {
        width: min(100%, 420px);
        height: auto;
        min-height: 520px;
    }

    .input {
        width: 90%;
    }

    .main {
        flex-direction: column;
    }

    nav {
        width: 100%;
        height: auto;
        flex-direction: row;
        overflow-x: auto;
        align-items: stretch;
    }

    .tab,
    .tab-l {
        min-width: 150px;
        margin-top: 0;
    }

    aside {
        width: 100%;
    }

    .box,
    .available,
    .performance-list,
    .exam-card {
        width: 100%;
    }

    .performance-list {
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .p-box,
    .p-box-v {
        width: 100%;
    }

    .cbt-slip {
        min-height: 82px;
        height: auto;
    }
}

@media (max-width: 520px) {
    .body {
        align-items: stretch;
    }

    .form {
        min-height: calc(100vh - 20px);
    }

    .top {
        gap: 12px;
    }

    .top .logo {
        width: 72px;
        margin-bottom: 0;
    }

    .info {
        max-width: calc(100% - 92px);
        justify-content: flex-end;
    }

    .u-name {
        overflow: hidden;
    }

    .u-name p {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .performance-list {
        grid-template-columns: 1fr;
    }

    .asss {
        height: auto;
        gap: 10px;
        align-items: flex-start;
    }

    .controls {
        min-width: 92px;
        height: auto;
    }
}
*/








/* VenJS 5.0 starter stylesheet */
@media screen and (max-width: 899px){
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
   overflow-y:scroll;
}

.body{
    width: 100%;
    height: 100vh;
    background-color: rgb(214, 214, 255);
    display: flex;
    align-items: center;
    padding: 10px;
    justify-content: center;
}

.form{
    width: 100%;
    max-width: 420px;
    height: 600px;
    background-color: white;
    border-radius: 8px;
    padding: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.logo{
    width: 100px;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

.input{
    width: 90%;
    max-width: 360px;
    height: 40px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgb(230, 230, 230);
}

.btn{
    width: 90%;
    height: 40px;
    border-radius: 10px;
    border: none;
    background-color: blue;
    color: white;
    cursor: pointer;
}

.footer-txt{
    font-size: 13px;
    display: flex;
    gap: 3px;
}

.highlight{
    color: blue;
    cursor: pointer;
}











/*
------------------------------
 App.js stylings
------------------------------
*/

.top{
    width: 100%;
    height: 70px;
    background-color: white;
    border-bottom: 1px solid rgb(233, 233, 233);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
}

.info{
    width:100px auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.p-avatar{
    width: 30px;
    height: auto;
}

.main{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

nav{
    width: 100%;
    height: 60px;
    background-color: rgb(238, 238, 238);
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    flex-direction: row;
    gap: 5px;
    padding: 0 10px;
    justify-content: space-around;
    z-index: 999;
    border-top: 1px solid rgb(220, 220, 220);
}

.tab{
    width: auto;
    flex: 1;
    height: 100%;
    background-color: transparent;
    padding: 8px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    flex-direction: column;
    border: none;
    color: rgb(90, 90, 90);
}

.tab p{
    font-size: 11px;
}

.tab:hover{
    background-color: rgba(141, 141, 252, 0.15);
    color: blue;
}

.active{
    background-color: transparent;
    color: blue;
    font-weight: bold;
}

.tab-l{
    width: auto;
    flex: 1;
    height: 100%;
    background-color: transparent;
    padding: 8px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    flex-direction: column;
    border: none;
    color: rgb(90, 90, 90);
    margin-top: 0;
}

.tab-l:hover{
    background-color: rgba(250, 153, 153, 0.15);
    color: rgb(200, 50, 50);
}

.container{
    padding: 1em;
    padding-bottom: 80px;
    width: 100%;
    height: auto;
}

aside{
    width: 100%;
    height: auto;
}

.box{
    width: 95%;
    height: 100px;
    border-radius: 10px;
    background-color: rgb(90, 90, 235);
    padding: 1em;
    color: rgb(248, 248, 248);
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.msg{
    font-size: 1.3em;
}

.class-info{
    font-size: 13px;
}

.performance-list{
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: 30px auto;
}

.p-box{
    width: 90px;
    height: 90px;
    background-color: rgb(238, 238, 238);
    border-radius: 5px;
    padding: 1em;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.p-box-v{
    width: 100px;
    height: 90px;
    background-color: rgb(119, 119, 190);
    border-radius: 5px;
    padding: 1em;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: rgb(248, 248, 248);
}

.p-name{
    font-size: 13px;
    font-weight: 600;
}

.p-score{
    font-size: 14px;
}


.available{
    width: 100%;
    height: 300px auto;
    background-color: white;
    border: 1px solid rgb(226, 226, 226);
    margin: 20px auto;
    padding: 1em;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cbt-slip{
    width: 100%;
    height: 70px;
    border: 1px solid rgb(240, 239, 239);
    display: flex;
    gap: 10px;
    padding: 10px;
}

.icon{
    background-color: rgb(193, 193, 224);
    padding: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    width: 50px;
}

.asss{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 60px;
}

.assessment-info{
    display:flex;
    flex-direction: column;
}

.controls{
  display: flex;
  flex-direction: column;
  height:60px ;
  gap: 3px;
  padding: 5px;
}

.due{
    font-size: 12px;
    color: blue;
}

.st-btn{
    width: 80px;
    height: 30px;
    border-radius: 30px;
    border: 1px solid blue;
    background-color: white;
    cursor: pointer;
}

.Assessment-title{
    font-weight: 600;
}

.ass-type{
    font-size: 12px;
}

/*
----------------------
App Assessments style
----------------------
*/

.cm-ass{
    width: 90%;
    height: auto;
    padding: 1em;
    border-radius: 10px;
    border: 1px solid rgb(233, 233, 233);
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 30px auto;
}

/*
----------------------
App Exams style
----------------------
*/

.exam-card{
    width: 70%;
    height: 150px;
    border: 1px solid blue;
    border-radius: 10px;
    display: flex;
    margin: 30px auto;
    padding: 1em;
    flex-direction: column;
}

.card-top{
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.i-f{
    width: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.e-icon{
    width: 35px;
    padding: 5px;
    background-color: rgb(143, 143, 209);
    border-radius: 5px;
}

#trm{
    font-weight: 600;
}

#cre{
    font-size: 14px;
}

.o-badge{
    padding: 5px;
    border-radius: 10px;
    background-color: rgba(142, 255, 142, 0.603);
    font-size: 12px;
}

.c-badge{
    padding: 5px;
    border-radius: 10px;
    background-color: rgba(241, 49, 49, 0.623);
    font-size: 12px;
}

.middle{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.time{
    display: flex;
    justify-content: space-between;
    gap:6px;
}

.bottom{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.star-bn{
    width: 80%;
    height: 30px;
    border-radius: 6px;
    border: none;
    background-color: blue;
    color: white;
    margin: 10px auto;
    cursor: pointer;
}

.middle p{
    font-size: 13px;
}

.middle i{
    color: blue;
}

button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.field-stack {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mode-switch {
    width: 90%;
    height: 42px;
    padding: 4px;
    border-radius: 10px;
    border: 1px solid rgb(226, 226, 226);
    background: rgb(247, 247, 247);
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.mode-btn {
    flex: 1;
    border: none;
    border-radius: 7px;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    color: rgb(78, 78, 78);
}

.active-mode {
    background: blue;
    color: white;
}

.link-btn {
    border: none;
    background: transparent;
    color: blue;
    cursor: pointer;
    font-weight: 600;
    padding: 0;
}

.error-text {
    width: 90%;
    padding: 10px;
    border-radius: 8px;
    background: rgb(255, 238, 238);
    color: rgb(170, 32, 32);
    font-size: 13px;
    text-align: center;
}

.empty-state {
    padding: 18px;
    border: 1px dashed rgb(220, 220, 220);
    border-radius: 8px;
    color: rgb(105, 105, 105);
    font-size: 14px;
}

.page-spacer {
    height: 88px;
}

.compact-form {
    height: 260px;
}

.muted-tab {
    color: rgb(90, 90, 90);
}

.done-badge {
    padding: 5px;
    border-radius: 10px;
    background-color: rgba(94, 121, 255, 0.15);
    color: blue;
    font-size: 12px;
}

.mark {
    font-size: 12px;
    color: rgb(18, 126, 62);
    font-weight: 700;
}

.tab-l {
    border: none;
}

.u-name p {
    white-space: nowrap;
}

.play-workspace {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
}
.play-sidebar {
    width: 100%;
}
.play-content {
    width: 100%;
}
}









