body{
    user-select: none;
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
    height: 100%;
    background-color: #0f0f1a;
    color: #e4e4e7;
} 
.container{
    position:relative;
    align-items: center;
    height: 100%;
    width: 100%;
}
nav{
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    margin: 3px;
    padding: 0px;
    height: 55px;
    display:flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #00d9ff33;
}

a,
a:hover,
a:visited,
a:active {
  text-decoration: none;
}
.btn{
    background-color: transparent;
    border: none;
    width:50px;
    height: 30px;
    color: #00d9ff;
    cursor: pointer;
    font-size:20px;
    border-radius: 10px;
    transition: all 0.2s ease;
}
.btn:hover{
    color: #ff6b9d;
    transform: scale(1.1);
}
.btn:active{
    transform: scale(0.95);
}
.drawer{
    background: linear-gradient(180deg, #1a1a2e, #0f0f1a);
    color: #e4e4e7;
    height:90%;
    width: 250px;
    position: fixed;
    text-align: center;
    left: -250px; 
    border-radius: 0px 15px 15px 0px;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 4px 0 20px rgba(0,217,255,0.15);
    border-right: 1px solid #00d9ff33;
}
.drawer.open{
    left: 0;
}
.drawer img{
    width: 75px;
    margin-top: 70px;
    border: solid 3px #8cd0dc;
    border-radius: 75px;
    margin-bottom: 60px;
    box-shadow: 0 0 10px rgba(0,217,255,0.4);
}
.drlist{
    background: transparent;
    text-align: left;
    border-bottom: none;
    padding: 0px;
    margin: 8px 12px;
    border-radius: 10px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.drlist h4{
    margin: 0px;
    padding: 14px 16px;
    color: #e4e4e7;
    font-size: 14px;
    letter-spacing: 0.3px;
    font-weight: 600;
}
.ttbtn{
    cursor: pointer;
}

/* Drawer: info rows (name/course) - card style */
.drawer .drlist:not(.ttbtn){
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}
.drawer .drlist:not(.ttbtn) h4{
    color: #e4e4e7;
    font-weight: 700;
    text-align: center;
}
.drawer #user-n{
    font-size: 16px;
    letter-spacing: 0.5px;
    color: #a1a1aa;
    text-transform: uppercase;
    font-weight: 600;
}
.drawer #user-c{
    color: #a1a1aa;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Drawer: actionable rows - simple buttons */
.drawer .drlist.ttbtn{
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}
.drawer .drlist.ttbtn h4{
    font-weight: 700;
    letter-spacing: 0.4px;
    text-align: center;
    color: #e4e4e7;
}
.drawer .drlist.ttbtn:active{
    transform: scale(0.97);
}

/* Contact link */
.drawer .drlist.ttbtn a,
.drawer .drlist.ttbtn a:visited{
    color: #e4e4e7;
    font-weight: 700;
}

/* Total attendance: subtle cyan */
.drawer #ttattbtn{
    background: rgba(0,217,255,0.08);
    border: 1px solid rgba(0,217,255,0.2);
}
.drawer #ttattbtn h4{
    color: #5eead4;
}

/* Logout: red glow */
.drawer #log-out{
    background: linear-gradient(135deg, rgba(239,68,68,0.15), rgba(220,38,38,0.1));
    border: 1px solid rgba(239,68,68,0.35);
    box-shadow: 0 0 15px rgba(239,68,68,0.2);
}
.drawer #log-out h4{
    color: #fca5a5;
}
.drawer #log-out:active{
    background: linear-gradient(135deg, rgba(239,68,68,0.25), rgba(220,38,38,0.15));
    box-shadow: 0 0 20px rgba(239,68,68,0.3);
}
.overlay{
    background-color: rgba(0,0,0,0.75);
    position: fixed;
    height: 100%;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: none;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 500;
}
.overlay.show{
    display: block;
    pointer-events: all;
}
.overlay.showlogin{
    display: block;
    pointer-events: all;
}
.addsub{
    font-size: 30px;
    position: fixed;
    right: 15%;
    background: linear-gradient(135deg, #00d9ff, #00b4d8);
    bottom: 20%;
    border: none;
    box-shadow: 0 4px 20px rgba(0,217,255,0.5);
    padding: 15px 20px;
    border-radius: 50%;
    z-index: 400;
    color: #0f0f1a;
    cursor: pointer;
    transition: all 0.3s ease;
}
.addsub:hover{
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    box-shadow: 0 6px 25px rgba(255,107,157,0.5);
    transform: scale(1.1);
}
.addsub:active{
    transform: scale(0.95);
}
.dialog1{
    width : 300px;
    max-width: 500px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    padding: 20px;
    height: 150px;
    text-align: center;
    position: fixed;
    left: 50%;
    top: 50%;
    display: none;
    transform : translate(-50%,-80%);
    border: 1px solid #00d9ff44;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.dialog1 h4{
    margin: 10px;
    font-size: 18px;
    color: #e4e4e7;
}
.d1btns{
    position: absolute;
    padding : 10px 18px;
    background: linear-gradient(135deg, #252542, #1a1a2e);
    color: #e4e4e7;
    border: 1px solid #00d9ff44;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.d1btns:hover{
    background: linear-gradient(135deg, #00d9ff, #00b4d8);
    color: #0f0f1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,217,255,0.4);
}
.d1btns:active{
    transform: translateY(0);
}
.cancel1{
    left:10%;
}
.confirm1{
    right : 10%;
    
}
.dialog1.showd{
    display: block;
    z-index: 1000;
}
.input1{
    width :80%;
    height:25%;
    font-size:20px;
    margin-bottom:20px;
    border: solid 2px #00d9ff44;
    border-radius: 8px;
    background-color: #252542;
    color: #e4e4e7;
}
.input1:focus{
    outline: none;
    border-color: #00d9ff;
    box-shadow: 0 0 10px rgba(0,217,255,0.3);
}
#scroll-list {
  position: fixed;
  width: 95%;
  height: 90%;
  margin-top: 10px;
  background-color: #1a1a2e;
  border-radius: 12px;
  margin-left: 3%;
  border: solid 1px #00d9ff22;
  padding: 5px;
  overflow-y: auto;
  box-sizing: border-box;

}
.item {
    background: linear-gradient(145deg, #252542, #1a1a2e);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    margin: 8px 0;
    padding: 10px;
    border: solid 1px #00d9ff33;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    transition: all 0.2s ease;
}
.item:hover{
    border-color: #00d9ff;
    box-shadow: 0 4px 20px rgba(0,217,255,0.2);
}
.item button{
    cursor: pointer;
    font-size: 20px;
    background: linear-gradient(135deg, #252542, #1a1a2e);
    color: #ff6b9d;
    border: solid 1px #ff6b9d44;
    border-radius: 6px;
    transition: all 0.2s ease;
}
.item button:hover{
    background: #ff6b9d;
    color: #0f0f1a;
    box-shadow: 0 0 10px rgba(255,107,157,0.5);
}
.item p{
    margin: 0px;
    width:80%;
    height:30px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    color: #e4e4e7;
}
.sub-rem-dialog{
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    position: fixed;
    left: 50%;
    top: 50%;
    transform : translate(-50%,-50%);
    z-index: 501;
    height: 120px;
    width: 270px;
    text-align: center;
    border: 1px solid #00d9ff44;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    display: none;
    
}
.sub-rem-dialog button{
    margin: 0px 33px;
    margin-top: 15px;
    font-size: 13px;
    padding: 8px 12px;
    cursor: pointer;
    background: linear-gradient(135deg, #252542, #1a1a2e);
    color: #e4e4e7;
    border: 1px solid #00d9ff44;
    border-radius: 6px;
    transition: all 0.2s ease;
}
.sub-rem-dialog button:hover{
    background: linear-gradient(135deg, #00d9ff, #00b4d8);
    color: #0f0f1a;
}
.sub-rem-dialog h4{
    color: #e4e4e7;
}
.sub-rem-dialog.show{
    display: block;
}
.att-add-dialog{
    border: 1px solid #00d9ff44;
    border-radius: 12px;
    padding: 0px;
    text-align: center;
    width: 300px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    position: fixed;
    display: none;
    left: 50%;
    top: 50%;
    transform : translate(-50%,-50%);
    z-index: 501;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.att-add-dialog.show{
    display: block;
}
.att-add-dialog button{
    margin: 10px 45px;
    font-size: 15px;
    cursor: pointer;
    height: 30px;
    width: 55px;
    background: linear-gradient(135deg, #252542, #1a1a2e);
    color: #e4e4e7;
    border: 1px solid #00d9ff44;
    border-radius: 6px;
    transition: all 0.2s ease;
}
.att-add-dialog button:hover{
    background: linear-gradient(135deg, #00d9ff, #00b4d8);
    color: #0f0f1a;
}
#att,#htt{
    background-color: #252542;
    border: 1px solid #00d9ff44;
    color: #00d9ff;
    font-weight: bold;
}

.att-add-dialog p{
    font-size: 18px;
    color: #e4e4e7;
}
.atd-sub{
    margin: 20px;
    background: linear-gradient(145deg, #252542, #1a1a2e);
    border-radius: 20px;
    border: 1px solid #00d9ff22;
}
.atd-sub p{
    margin: 10px;
    font-size: 14px;
    color: #a1a1aa;
}
.atd-sub button{
    margin:0px 20px ;
    margin-bottom: 10px;
    font-size: 20px;
    width: 40px;
    cursor: pointer;
    background: linear-gradient(135deg, #252542, #1a1a2e);
    color: #00d9ff;
    border: 1px solid #00d9ff44;
    border-radius: 6px;
    transition: all 0.2s ease;
}
.atd-sub button:hover{
    background: #00d9ff;
    color: #0f0f1a;
}
.login-dialog{
    width: 220px;
    max-width: 500px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    padding: 20px;
    height: 250px;
    text-align: justify;
    position: fixed;
    left: 50%;
    top: 50%;
    display: none;
    transform : translate(-50%,-50%);
    border: solid 1px #00d9ff44;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    z-index: 501;
}
.login-dialog.show{
    display: block;
}
.login-dialog h4{
    margin:0px;
    padding-left: 50px;
    color: #e4e4e7;
}
.login-dialog h6{
    margin-top: 15px;
    font-size: 13px;
    color: #a1a1aa;
}
.login-dialog input{
    border: solid 2px #00d9ff44;
    background-color: #252542;
    color: #e4e4e7;
    width: 85%;
    height: 10%;
    border-radius: 6px;
}
.login-dialog input:focus{
    outline: none;
    border-color: #00d9ff;
}
.login-dialog button{
    margin-top: 16px;
    position: inherit;
    left: 35%;
    font-size: 20px;
    background: linear-gradient(135deg, #00d9ff, #00b4d8);
    color: #0f0f1a;
    border: none;
    border-radius: 8px;
    padding: 6px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.login-dialog button:hover{
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255,107,157,0.4);
}
.total-att-cal{
    width: 300px;
    max-width: 500px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    height: 424px;
    text-align: center;
    position: fixed;
    left: 50%;
    top: 40%;
    display: none;
    transform : translate(-50%,-50%);
    border: solid 1px #00d9ff44;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    z-index: 501;
}
.total-att-cal.show{
    display: block;
}
.total-att-cal button{
    position: absolute;
    bottom: 10px;
    left: 35%;
    font-size: 18px;
    padding : 8px 16px;
    background: linear-gradient(135deg, #00d9ff, #00b4d8);
    color: #0f0f1a;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.total-att-cal button:hover{
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    transform: scale(1.05);
}
.total-att-cal p{
    background: linear-gradient(135deg, #252542, #1a1a2e);
    margin: 5px;
    padding: 5px;
    border: #00d9ff44 1px solid;
    border-radius: 8px;
    font-size: 15px;
    color: #e4e4e7;
}
.total-att-cal h4{
    color: #e4e4e7;
}
.tot-att-lbox{
    text-align: justify;
    background-color: #0f0f1a;
    margin: 3px;
    border-radius: 8px;
    height: 65%;
    overflow-y: scroll;
    border: 1px solid #00d9ff22;
}
.tot-att-lbox::-webkit-scrollbar{
    width: 0px;
}
.tot-att-items{
    padding: 2px;
    background: linear-gradient(145deg, #252542, #1a1a2e);
    height: 30px;
    border: #00d9ff33 1px solid;
    border-radius: 6px;
    margin: 3px;
    border-bottom: #00d9ff 2px solid;
}
.tot-att-items input{
    margin-top: 8px;
    accent-color: #00d9ff;
}
.tot-att-items label{
    width: 60%;
    height: 100%;
    padding-left: 30%;
    display: inline-block;
    color: #e4e4e7;
}
.timetable{
    width: 300px;
    max-width: 500px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    height: 400px;
    text-align: center;
    position: fixed;
    left: 50%;
    top: 40%;
    display: none;
    transform : translate(-50%,-50%);
    border: solid 1px #00d9ff44;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    z-index: 501;
}
.timetable.show{
    display: block;
}
.timetable h4{
    color: #e4e4e7;
}
.timetable button{
    position: absolute;
    bottom: 10px;
    left: 35%;
    font-size: 18px;
    padding : 8px 16px;
    background: linear-gradient(135deg, #00d9ff, #00b4d8);
    color: #0f0f1a;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.timetable button:hover{
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    transform: scale(1.05);
}
.timetable select{
    background-color: #252542;
    border: #00d9ff44 solid 1px;
    color: #e4e4e7;
    margin: 6px 24px;
    padding: 4px;
    border-radius: 6px;
}
.timedaybox{
    text-align: justify;
    background-color: #0f0f1a;
    margin: 3px;
    border-radius: 8px;
    height: 60%;
    border: 1px solid #00d9ff22;
}
.timedaybox::-webkit-scrollbar{
    width: 0px;
}
.timedayitem{
    padding: 2px;
    background: linear-gradient(145deg, #252542, #1a1a2e);
    height: 30px;
    border: #00d9ff33 1px solid;
    border-radius: 6px;
    margin: 3px;
    border-bottom: #00d9ff 2px solid;
}
.timedayitem label{
    width: 60%;
    height: 100%;
    padding-left: 30%;
    display: inline-block;
    color: #e4e4e7;
}
.timedayitem input{
    margin-top: 8px;
    accent-color: #00d9ff;
}
/* iphonefix */
.att-container{
    height: 120vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.attbtn-box{
    width: 100vw;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.att-btn{
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    width: 200px;
    max-width: 500px;
    min-width: 150px;
    height: 100px;
    border: solid 1px #00d9ff33;
    text-align: center;
    border-radius: 16px;
    margin: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.att-btn:hover{
    border-color: #00d9ff;
    box-shadow: 0 6px 25px rgba(0,217,255,0.3);
    transform: translateY(-3px);
}
.att-btn:active{
    transform: translateY(0);
}
.att-btn h6{
    font-size:20px;
    color: #a1a1aa;
    top: 3px;
    margin: 10px 0px;
}
.att-btn h4{
    font-size: 40px;
    margin: 0px;
    color: #00d9ff;
}
.att-btn2 h4{
    margin-top:25px;
}
#loading{
    text-align: center;
    position: fixed;
    width: 100%;
    top: 20%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 0;
    transition: opacity 0.6s;
}
#loading p{
    font-weight: bold;
    color: #00d9ff;
}
#loading.show{
    opacity: 1;
}
.login-card{
    width: 250px;
    max-width: 500px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    padding: 20px;
    height: 270px;
    text-align: justify;
    position: fixed;
    left: 50%;
    top: 50%;
    display: none;
    transform : translate(-50%,-50%);
    border: solid 1px #00d9ff44;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.login-card.show{
    display: block;
}
.login-card p{
    margin: 0px;
    font-size: 12px;
    opacity: 0;
    color: #a1a1aa;
}
.login-card p.error{
    opacity: 1;
    color: #ff6b9d;
}
.login-card h5{
    font-size: 25px;
    margin: 0px;
    margin-bottom: 50px;
    color: #e4e4e7;
}
.login-card input{
    margin: 0px;
    width: 90%;
    height: 9%;
    font-size: 14px;
    border: 2px solid #00d9ff44;
    border-radius: 6px;
    background-color: #252542;
    color: #e4e4e7;
}
.login-card input:focus{
    outline: none;
    border-color: #00d9ff;
}
.login-card input.success{
    border: 2px solid #10b981;
}
.login-card h6{
    margin: 10px 0px;
    font-size: 14px;
    color: #a1a1aa;
}
.login-card button{
    margin-top: 18px;
    width:30%;
    height: 11%;
    position: inherit;
    left: 35%;
    font-size: 20px;
    border-radius: 8px;
    cursor: pointer;
    background: linear-gradient(135deg, #00d9ff, #00b4d8);
    color: #0f0f1a;
    border: none;
    transition: all 0.2s ease;
}
.login-card button:hover{
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    transform: scale(1.05);
}
.calc-dialog{
    width: 250px;
    max-width: 500px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    padding: 20px;
    height: 250px;
    text-align: center;
    position: fixed;
    display: none;
    left: 50%;
    top: 40%;
    transform : translate(-50%,-50%);
    border: solid 1px #00d9ff44;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.calc-dialog.show{
    display: block;
    z-index: 500;
}
.calc-dialog h3{
    margin: 0px;
    margin-bottom: 50px;
    color: #e4e4e7;
}
.calc-dialog h5{
    font-size: 16px;
    color: #10b981;
}
.calc-dialog h5.error{
    color: #ff6b9d;
}
.calc-dialog p{
    margin: 0px;
    font-size: 10px;
    color: #a1a1aa;
}
.calc-dialog input{
    font-size: 20px;
    width: 100px;
    background-color: #252542;
    border: 2px solid #00d9ff44;
    border-radius: 6px;
    color: #e4e4e7;
}
.calc-dialog input:focus{
    outline: none;
    border-color: #00d9ff;
}
.calc-dialog button{
    font-size: 18px;
    padding: 8px 12px;
    position: inherit;
    left: 35%;
    bottom: 17px;
    background: linear-gradient(135deg, #00d9ff, #00b4d8);
    color: #0f0f1a;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.calc-dialog button:hover{
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    transform: scale(1.05);
}
.log-dialog{
    width: 255px;
    max-width: 500px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    height: 270px;
    padding: 14px;
    text-align: center;
    position: fixed;
    display:none;
    left: 50%;
    top: 50%;
    transform : translate(-50%,-50%);
    border: solid 1px #00d9ff44;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    z-index: 500;
}
.log-dialog h3{
    margin: 0px;
    margin-bottom: 40px;
    color: #e4e4e7;
}

.log-dialog.show{
    display:block;
}
.log-dialog p{
    font-size: 10px;
    font-weight: bold;
    color: #a1a1aa;
}
.log-scroll{
    height: 190px;
    border: 1px solid #00d9ff44;
    overflow-y: scroll;
    text-align: justify;
    background-color: #0f0f1a;
    border-radius: 8px;
}
.log-scroll pre{
    font-weight: lighter;
    font-size: 10px;
    color: #e4e4e7;
}
.log-scroll::-webkit-scrollbar{
    width: 0px;
}
.piechart-container{
    margin-top: 40px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    width: 340px;
    height: 390px;
    border-radius: 16px;
    border: 1px solid #00d9ff33;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.piechart{
    background: transparent;
    height: 250px;
    width: 250px;
    border-radius: 50%;
    margin-top: 40px;
}
.lbox{
    width: 100%;
    margin-top: 10px;
    /* this is to make the dot and para to be in same line */
    display: flex;
    justify-items: left;
}
.lbox p{
    font-size: 12px;
    /* this is to make the para loose the margin and align correctly with the span */
    margin: 0px;
    color: #e4e4e7;
}
.lbox span{
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 2px;
    margin-right:5px;
    margin-left: 10px;
}
.tt-container{
    height:92vh;
    align-items: center;
    justify-items: center;
}
.tt-navigation{
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    height: 3em;
    width: 98%;
    display: flex;
    border: 1px solid #00d9ff33;
    border-radius: 10px;
    margin: 2px;
}
/* > means direct child * means universally allocate this , ie property  */
.tt-navigation>*{
    flex: 1;
    text-align: center;
    margin: 2px 7px;
    padding-top: 2px;
    font-family: Verdana, Tahoma, sans-serif;
    border: none;
    color: #a1a1aa;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}
.tt-navigation>*:hover{
    color: #00d9ff;
}
.today-button{
    font-weight: bold;
    color: #10b981;
}
.selected-btn{
    font-weight: bold;
    border-bottom: #00d9ff 3px solid;
    color: #00d9ff;
}
.sub-item{
    margin: 10px 6px;
    border-radius: 8px;
    border: #00d9ff33 1px solid;
    text-align: center;
    justify-items: center;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
}
.sub-item:hover{
    border-color: #00d9ff;
}
.sub-item p{
    color: #00d9ff;
    font-size: 10px;
    margin: 0px;
    padding: 2px 0px;
    width: 100%;
    font-weight: bold;
    border: 1px #00d9ff33 solid;
    background: linear-gradient(135deg, #252542, #1a1a2e);
    border-radius: 8px 8px 0 0;
}
.sub-item select{
    text-align: center;
    appearance: none;
    width: 95%;
    margin: 10px 0px;
    padding: 10px 0px;
    font-size: 8px;
    border: none;
    background-color: transparent;
    color: #e4e4e7;
}
.sub-item h3{
    width: 95%;
    margin:2px 0px;
    padding: 10px 0px;
    font-size: 16px;
    border: none;
    background-color: transparent;
    color: #e4e4e7;
}

.tt-listbox{
    /* background-color: #b7b89f; */
    border: 0px solid black;
    border-radius: 5px;
    height: auto;
    width: 98%;
    display: flex;
    align-items: flex-start;
}
.tt-listbox>*{
    flex: 1;
}
.tt-lboxrow{
    /* background-color: #cbcbcb; */
    border: 0px black solid;
    margin: 2px 2px;
    border-radius: 5px;
}
.today-row{
    border-left: 3px #10b981 solid;
    border-right: 3px #10b981 solid;
    border-radius: 8px;
    /* background-color:  rgb(1, 254, 9); */
}
.selected-row{
    border-left: 3px #00d9ff solid;
    border-right: 3px #00d9ff solid;
    border-radius: 8px;
    /* background-color:cadetblue; */
}
.selected-row select{
    font-size: 12px;
}
.uploadbtn{
    margin-right: 4px;
    width: 15%;
    max-width: 100px;
    height: 70%;
    max-height: 50px;
    border-radius: 8px;
    background: linear-gradient(135deg, #00d9ff, #00b4d8);
    color: #0f0f1a;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}
.uploadbtn:hover{
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    transform: scale(1.05);
}
.ttupload-dialog{
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    position: fixed;
    padding: 5px;
    left: 50%;
    top: 50%;
    transform : translate(-50%,-50%);
    z-index: 501;
    height: auto;
    width: 240px;
    text-align: center;
    border: 1px solid #00d9ff44;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    display: none;
}
.ttupload-dialog h4{
    color: #e4e4e7;
}
.ttupload-dialog p{
    color: #ff6b9d;
}
.ttupload-dialog button{
    position: relative;
    margin: 0px 20px;
    bottom: 3px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #252542, #1a1a2e);
    color: #e4e4e7;
    border: 1px solid #00d9ff44;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.ttupload-dialog button:hover{
    background: linear-gradient(135deg, #00d9ff, #00b4d8);
    color: #0f0f1a;
}
.ttupload-dialog.show{
    display: block;
}
.nowhour{
    background: linear-gradient(135deg, #ff6b9d, #ff8fab) !important;
    color: #0f0f1a !important;
}

/* notification */
.notifdrawer{
    background: linear-gradient(180deg, #1a1a2e, #0f0f1a);
    color: #e4e4e7;
    height:90%;
    width: 250px;
    position: fixed;
    right: -250px;
    text-align: center;
    border-radius: 15px 0 0 15px;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-y: scroll;
    box-shadow: -4px 0 20px rgba(0,217,255,0.15);
    border-left: 1px solid #00d9ff33;
}
.notifdrawer::-webkit-scrollbar{
    width: 0px;
}
.notifdrawer p{
    background: linear-gradient(145deg, #252542, #1a1a2e);
    margin: 5px;
    padding: 6px;
    border: 1px solid #00d9ff44;
    border-radius: 8px;
    color: #e4e4e7;
}

.notifdrawer.show{
    right: 0px;
}
.notiflegend{
    width: 80%;
    text-align: justify;
    padding-left: 12px;
    font-family: Verdana,serif;
    font-variant-caps: small-caps;
    color: #a1a1aa;
}
.notifdaybox{
    background: linear-gradient(145deg, #252542, #1a1a2e);
    text-align: center;
    height: auto;
    margin: 15px 10px;
    border: solid 1px #00d9ff33;
    border-top: 0px;
    border-radius: 10px;
}
.notifdaybox p{
    font-size: 12px;
    background: linear-gradient(135deg, #00d9ff, #00b4d8);
    color: #0f0f1a;
    padding: 6px;
    margin: 0px;
    position: relative;
    top: -4px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
}

.notifitem{
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    height: auto;
    min-height: 74px;
    margin: 5px;
    padding: 8px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #00d9ff22;
}
.notifitem h4{
    position: relative;
    top: 3px;
    margin: 0px 5px;
    font-size: 16px;
    color: #e4e4e7;
}
.notifitem label{
    margin: 0px 5px;
    font-size: 12px;
    color: #00d9ff;
    font-weight: 600;
}
.notifitem button{
    margin: 5px 14px;
    height: 35%;
    width: 18%;
    background: linear-gradient(135deg, #252542, #1a1a2e);
    color: #e4e4e7;
    border: 1px solid #00d9ff44;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.notifitem button:hover{
    background: linear-gradient(135deg, #00d9ff, #00b4d8);
    color: #0f0f1a;
}
.go-to-tt{
    width: 70%;
    background: linear-gradient(135deg, #00d9ff, #bd19c6);
    box-shadow: 0 10px 30px rgba(0,217,255,0.22), 0 8px 22px rgba(189,25,198,0.18);
    padding: 5px 18px;
    margin: 0px;
    border-radius: 20px;
    position: fixed;
    text-align: center;
    left: 50%;
    top: 95%;
    transform : translate(-50%,-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #0f0f1a;
    cursor: pointer;
    user-select: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
    border: 1px solid rgba(255,255,255,0.25);
}
.go-to-tt label{
    margin: 0px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    line-height: 1;
}

.go-to-tt .material-symbols-outlined,
.go-to-tt .material-icons{
    font-size: 22px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.go-to-tt:hover{
    transform: translate(-50%,-50%) scale(1.02);
    box-shadow: 0 14px 38px rgba(0,217,255,0.28), 0 12px 28px rgba(189,25,198,0.22);
    filter: saturate(1.06);
}

.go-to-tt:active{
    transform: translate(-50%,-50%) scale(0.99);
}
