@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;600&display=swap');

:root {
    --black: #000;
    --white: #fff;
    --purple: #4a1083;
    --txtColor: #111111;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--txtColor);
    background-color: var(--white);
}

/* button css */
.btn {
    display: block;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    padding: 10px 36px;
    border: none;
    cursor: pointer;
    margin: 15px 0;
    text-decoration: none;
}

.purple-btn {
    background: var(--purple);
    color: var(--white);
    border-radius: 5px;
}
.table thead {
    background: #f5ebff !important;
}

.text-area-box {
    border: 1px solid #5A189A;
    border-radius: 8px;
}

.logout-btn {
    margin-top: 10px !important;
    text-align: center;
    border: 1px solid #5A189A;
    color: #5A189A;
    border-radius: 8px;
    padding: 3px 11px;
}

.small-btn {
    margin-top: 10px !important;
    text-align: center;
    border: 1px solid #5A189A;
    color: #5A189A;
    border-radius: 8px;
    padding: 3px 11px;
}

.gray-btn {
    text-align: center;
    border: 1px solid #5A189A;
    color: #5A189A;
    border-radius: 8px;
    background-color: white;
}

.gray-btn:hover, .logout-btn:hover {
    color: white;
    background-color: #5A189A;
}

main{
    margin: 50px 0;
    min-height: 350px;
}

/* header */
header {
    z-index: 1;
    top: 0;
    position: fixed;
    width: 100%;
    height: 100px;
    padding: 2px 48px;
    box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
}
h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px !important;
    /*color: #000000;*/
    font-weight: Medium;
}

.meeting_code_header, .user_type_name {
    font-family: 'Poppins', sans-serif;
    font-size: 17px !important;
    color: #000000;
    font-weight: medium;
}

.logodiv {
    height: 100%;
    width: 300px;
}

.logodiv img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.logoutbtn {
    width: 20%;
    text-align: center;
    gap: 12px;
    align-items: center;
    display: flex;
    justify-content: flex-end;
}

.avtarimgbox {
    height: 65px;
    width: 65px;
    border-radius: 50%;
    margin: 0 auto;
}

.avtarimgbox img {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profile-image {
    border-radius: 0 !important;
}

.logouttext a {
    margin: 0 auto; 
    text-decoration: none;
    font-size: 15px;
    color: var(--black);
}

.logouttext {
    margin: 0 auto;
    max-width: 150px;
}

/* tabs */
.tab {
    width: 60%;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab button {
    background-color: inherit;
    border: none;
    outline: none;
    cursor: pointer;
    /*padding: 14px 16px;*/
    transition: 0.3s;
    font-size: 20px;
    /*border: 1px solid #5A189A;*/
    border-radius: 8px;
    margin: 0 13px;
    margin-top: 15px;
    color: gray;
    font-weight: 700;
    color: #777777;
}

.tab button:hover {
    color: #5A189A;
}

.tab button.active {
    font-weight: medium;
    font-size: 24px;
    color: #5A189A;
    text-decoration: underline #5A189A;
    letter-spacing: 
}

.tabcontent {
    display: none;
    padding: 38px 24px;
    border-top: none;
}
#receivedsession, #schedulesession, #schedule {
    padding: 0px 60px !important;
}

#training {
    padding: 38px 100px !important;
}

.topright {
    float: right;
    cursor: pointer;
    font-size: 28px;
}

/* schedule */
.schedulelist {
    border: 1px solid lightgrey;
    font-size: 20px;
    border-radius: 8px;
    padding: 17px 19px;
}

.schedulelist-session {
    border: none !important;
}

.list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid lightgrey;
    padding: 12px 0;
}
.list > div {
    flex: 0 20%;
}
.session-list {
    font-family: 'Poppins', sans-serif;
    border: none !important;
    font-size: 24px;
    font-weight: Medium;
}
.session-list > div {
    flex: none !important;
}
.namewimg {
    height: 66px;
    width: 60px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}
.namewimg img {
    height: 100%;
    /*width: 100%;*/
    object-fit: contain;
}
#Students .list-head .nameimg p,#Students .list-head .folder p,#Students .list-head .email p,#Students .list-head .Info p,
div#Tutors .list-head .nameimg p,div#Tutors .list-head .folder p,div#Tutors .list-head .email p,div#Tutors .list-head .Info p{
    font-size: 16px;
}
div#Tutors .nameimg p,div#Tutors .folder p{
    text-align: center;
}
#Students .nameimg p,#Students .folder p,#Students .email p,#Students .Info p,
div#Tutors .email p,div#Tutors .Info p{
    font-size: 22px;
    text-align: center;
}
.buttonsaddmain {
    display: flex;
    gap: 10px !important;
    margin: 0 auto 16px;
    width: fit-content;
}
.buttonsaddmain a:first-child{
    margin-right: 20px;
}
.joinbtn {
    border: 1px solid #5A189A;
    padding: 10px 22px;
    border-radius: 8px;
}

.joinbtn a {
    text-decoration: none;
    /* border: 1px solid #000; */
    color: #5A189A;
    font-size: 18px;
}

.joinbtn:hover {
    color: white;
    background-color: #5A189A;
}
.joinbtn a:hover {
    color: white;
    background-color: #5A189A;
}

.formmainbox {
    padding: 35px 10px;
    margin: 32px 0;
    box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
}

.formcontent {
    margin-bottom: 23px;
}

.formcontent h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.formmain .col {
    margin: 12px 0;
}

.formmain textarea {
    width: 100%;
    border-color: lightgray;
}

.inputwithbox input {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.inputtext {
    height: 100%;
    background: lightgray;
    padding: 7px 16px;
}

/* student */
.studentcardmain {
    gap: 65px;
    flex-wrap: wrap;
}

.studentcardmain .studentcard {
    flex: 0 30%;
}

.studentcard {
    border: 2px solid;
    border-radius: 14px;
}

.studentimg {
    height: 200px;
    width: 100%;
}

.studentimg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 14px 14px 0 0;
}

.studentinfo {
    text-align: center;
    padding: 10px 0;
    border-top: 2px solid;
}

/* footer */
footer {
    width: -webkit-fill-available;
    height: 140px;
    padding: 2px 48px;
    position: fixed;
    bottom: 0;
}
.code {
    width: 60%;
}
/* availibility */
.mainavilibity {
    display: flex;
    /*gap: 40px;*/
    margin: 20px 0;
}
.mainavilibity > div {
    /*flex: 0 20%;*/
    width: 19%;
}
.mainavilibity > a {
    text-decoration-color: black;
}
.my_select {
    
    border: 2px solid #969696;
    padding: 7px;
    border-radius: 4px;
}
/* request */
.requestbox {
    display: flex;
    gap: 42px;
    margin: 20px 0;
    align-items: center;
}
.reqimage {
    height: 80px;
    width: 80px;
}
/*.requestboxmain {
    display: flex;
    gap: 20px;
}
.requestboxmain > div:nth-child(1) {
    flex: 0 60%;
}
.requestboxmain > div:nth-child(2) {
    flex: 0 40%;
}*/
.reqimage img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.stuinfo h4,.timezone h4 {
    margin-bottom: 16px;
}
.stuinfo,.timezone {
    padding: 10px 0;
}
.stuinfo ul {
    list-style: none;
}
.stuinfo ul li{
    text-transform: capitalize;
}
.acceptreject {
    display: flex;
    gap: 20px;
}
.acceptreject i {
    font-size: 22px;
}

/*calender css*/
.date-picker {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 60px;
    background-color: #FFF;
    margin: 30px auto;
    /* box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2); */

    cursor: pointer;
    user-select: none;
}


.date-picker .selected-date {
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #313131;
    font-size: 28px;
}

.date-picker .dates {
    display: none;
    /*position: absolute;
    top: 100%;
    left: 0;
    right: 0;*/

    background-color: #FFF;
}

.date-picker .dates.active {
    display: block;
}

.date-picker .dates .month {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #EEE;
    padding: 19px;
}

.date-picker .dates .month .arrows {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #313131;
    font-size: 20px;
}

.date-picker .dates .month .arrows:hover {
    background-color: #F3F3F3;
}

.date-picker .dates .month .arrows:active {
    background-color: #240046;
}
.arrows.prev-mth,.arrows.next-mth {
    pointer-events: none;
    color: lightgray !important;
}

.date-picker .dates .days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    height: 300px;
}
.date-picker .dates .days .day { 
    display: flex;
    justify-content: center;
    align-items: center;
    color: #313131;
    cursor: pointer;
}
.date-picker .dates .days .week {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #313131;
    background: #f5f5f5;
}
.date-picker .dates .days .day.selected {
    background-color: #240046;
    color: #fff;
}
.selected-date.hide {
    height: 0;
    display: none !important;
}
.date-picker {
    height: 430px;
    margin: 0;
}
section.worddairy {
    margin-top: 60px;
}
.container.dairydiv {
    border: 1px solid lightgrey;
    padding: 21px 25px 0px 25px;
    border-radius: 15px 15px 0 0;
}
.container.trackingdiv {
    border: 1px solid lightgray;
    border-top: none;
    border-radius: 0 0 15px 15px;
}
.tutorcalender .trackingdiv {
    border: none !important;
}
.datepickermain {
    border-right: 1px solid lightgray;
    padding: 0;
}
.trackerinfoboxmain {
    padding: 20px 15px 13px 15px;
}
.trackerinfobox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid lightgray;
}
.date-picker{
    cursor: auto !important;
}
.date-picker .dates .days .day.disabledate {
    pointer-events: none;
    color: lightgray !important;
    cursor: pointer;
}
.daybutton .gray-btn {
    text-align: center;
    border-radius: 10px;
}
.open{
    display: block;
}
.close{
    display: none;
}
.tutorcalender {
    margin-top: 50px;
}
.tutorimg {
    height: 70px;
    width: 70px;
    margin-bottom: 11px;
}
.tutorimg img {
    height: 100%;
    width: 100%;
    border-radius: 50%;
}
.tutorcaldetail {
    padding: 20px 0;
}
.legalbox h2 {
    margin-bottom: 30px;
}
.formbox .col {
    margin: 10px 0;
}
.purple{
    background: var(--purple);
    color: var(--white);
    border-radius: 20px;
    border: 2px solid var(--purple);
}
.purple:hover{
    background: transparent;
    color: var(--purple);
    /* border: 1px solid var(--purple); */
}
.tutorimgshow{
    display: none;
    /*color: blue;*/
}

.searchtutorbox, .tutortitlebox {
    display: flex;
    align-items: flex-end;
}

.searchtutorbox input[type=text] {
    border-radius: 5px 0 0 5px;
    padding: 10px;
    font-size: 17px;
    border: 1px solid #5A189A;
    float: left;
    width: 80%;
}

.searchtutorbox .cross{
    border-radius: 0 5px 5px 0;
    float: left;
    /*width: 20%;*/
    padding: 10px;
    background: #5A189A;
    color: white;
    font-size: 17px;
    border-left: none;
    cursor: pointer;
}

.searchtutorbox .show-filters{
    font-size: 25px;
    margin-right: 30px;
    color: black;
}

.feedbackbtn{
    width: 20%;
}
.category_modal{
    font-size: 20px !important;
}
/*.odd{
    background-color: #f5ebff !important;
}*/
    .helpbtn {
        width: 20%;
    }

/* Responsive */
@media(max-width:375px){
    #schedule {
         padding: 0 !important; 
    }
    #training {
        padding: 0 !important;
    }
    .logo {
        width: 40% !important;
    }
    .logoutbtn {
        width: 55% !important;
    }
    .tab {
        width: 35% !important;
    }
    header {
        padding: 2px 2px !important;
    }
    .feedbackbtn {
        width: 100%;
    }
    .btn {
        padding: 7px 10px;
        font-size: 9px;
    }
    .helpbtn {
        width: 50%;
    }
    .start-reg-msg img {
        width: 100%;
    }
}
@media(max-width:425px){
    #schedule {
         padding: 0 !important; 
    }
    #training {
        padding: 0 !important;
    }
    .logo {
        width: 40% !important;
    }
    .logoutbtn {
        width: 55% !important;
    }
    .tab {
        width: 35% !important;
    }
    header {
        padding: 2px 2px !important;
    }
    .feedbackbtn {
        width: 100%;
    }
    .helpbtn {
        width: 50%;
    }
    .btn {
        padding: 7px 10px;
        font-size: 9px;
    }
    .start-reg-msg img {
        width: 100%;
    }
}

/* Responsive */
@media(max-width:992px){
    .receive {
        width: 96%;
    }
    #schedule {
         padding: 0 !important; 
    }
    .logo {
        width: 40% !important;
    }
    .logoutbtn {
        width: 55% !important;
    }
    .tab {
        width: 35% !important;
    }
    header {
        padding: 2px 2px !important;
    }
    .feedbackbtn {
        width: 100%;
    }
    .btn {
        padding: 7px 10px;
        font-size: 9px;
    }
    .helpbtn {
        width: 50%;
    }
    .start-reg-msg img {
        width: 100%;
    }
}