*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* --------------------- فونت های سایت --------------- */
@font-face {
    font-family:Titr ;
    src: url("fonts/Titr.ttf");
}
@font-face {
    font-family:Nazanin ;
    src: url("fonts/Nazanin.ttf");
}

#logo_png{
    height: 120px;
    margin: 0px auto;
    display: block;
}
/* -------------------- کلیدها  ------------------ */
.btn{
    text-decoration: none;
    text-align: center;
    display: block;
    border: none;
    padding: 7px;
    width: 250px;
    margin: 5px auto;
    font-size: 15px;
    overflow: hidden;
    font-family: Titr;
    border-radius: 10px;
    box-shadow:inset -1px -1px 5px gray;
    color: #000;
}
.btn:hover{
    box-shadow:inset 0px 0px 8px #fff;
    color: #fff;
}
.btn:disabled{
    background: #e7e7e7;
    color: gray;
}

.fixed_btn{
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.fixed_btn_top_right{
    text-decoration: none;
    text-align: center;
    display: block;
    border: none;
    padding: 7px;
    margin: 5px auto;
    font-size: 15px;
    overflow: hidden;
    font-family: Nazanin;
    border-radius: 10px;
    box-shadow:inset -1px -1px 5px gray;
    color: #000;
    position: fixed;
    top: 20px;
    right: 20px;
}
.fixed_btn_top_left{
    text-decoration: none;
    text-align: center;
    display: block;
    border: none;
    padding: 7px;
    margin: 5px auto;
    font-size: 15px;
    overflow: hidden;
    font-family: Nazanin;
    border-radius: 10px;
    box-shadow:inset -1px -1px 5px gray;
    color: #000;
    position: fixed;
    top: 20px;
    left: 20px;
}

/* -------------------- ایمپوت های متنی  ------------------ */
.inp_text{
    font-family: Nazanin;
    font-size: 15px;
    padding: 7px;
    width: 250px;
    margin: 5px auto;
    border-radius: 10px;
}
.inp_text:focus{
    background-color: khaki;
}

/* --------------------  رنگبندی زمینه  ------------------ */

.success{
    background: #04AA6D;
}
.info{
    background: #2196F3;
}
.warning{
    background: #ff9800;
}
.danger{
    background: #f44336;
}
.default{
    background: #e7e7e7;
}

/* --------------------  رنگبندی متن  ------------------ */

.text_success{
    color: #04AA6D;
}
.text_info{
    color: #2196F3;
}
.text_warning{
    color: #ff9800;
}
.text_danger{
    color: #f44336;
}
.text_default{
    color: #e7e7e7;
}

/* ---------------- زمینه ---------------- */
body{
    background-color: #101218;
    color: white;
    font-family: Nazanin;
}

/* ---------------- عناوین متنی ---------------- */

.titr{
    font-family: Titr;
    text-align: center;
    padding: 5px;
    font-size: 20px;
    direction: rtl;

}
/* ---------------- پیام ها ---------------- */
.msg{
    text-align: center;
    display: block;
    width: 100%;
    direction: rtl;
}
.msg_box{
    width: 90%;
    text-align: center;
    display: block;
    direction: rtl;
    border: 1px solid #fff;
    margin: 5px auto;
    background-color: #191c26;
}
.msg_scorol_box{
    width: 80%;
    height: 80vh;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 5px;
    margin: 10px auto;
    background-color: #191c26;
    overflow-x: hidden;
    overflow-y: scroll;
}

.msg_fixed{
    text-align: center;
    display: block;
    width: 50%;
    position: fixed;
    bottom: 10px;
    left: 10px;
    background-color: khaki;
    border-radius: 10px;
    color: #000;
    font-size: 15px;
    font-family: Titr;
    padding: 20px;
}

/* ------------- فرم ورود --------------- */
.form{
    padding: 20px;
    width: 90%;
    text-align: center;
    margin: 0 auto;
    border: 1px solid #fff;
    border-radius: 10px;
    margin-top: 50px;
}
.form>*{
    text-align: center;
}

/* ---------------- قسمت گزارشات پنل مدیریت ----------- */
.report{
    width: 90%;
    border: 1px solid #fff;
    margin: 10px auto;
    padding: 10px;
    background-color: #191c26;
    border-radius: 10px;
    min-height: 100px;

}


/* ----------------جدول گزارشات حداقل نمرات به دانش آموزان  ----------- */
.student{

}
table.student,table.student td,table.student th {  
    border: 2px solid #fff;
    text-align: center;
    font-size: 16px;
    direction: rtl;
  }
  
  table.student {
    border-collapse: collapse;
    width: 90%;
    margin: 5px auto;
  }
  
  table.student th,table.student td {
    padding: 10px;
  }
  table.student td{
    border: 2px solid #000;
    background-color: #fff;
    color: #000;
    font-size: 25px;
    font-weight: bold;
  }

/* --------------------- فایل منو ------------------ */
#menu{
    padding-top: 3px;
    direction: rtl;
    background-color: lavender;
    color: #000;
    font-size: 20;
    font-family: Nazanin;
    display: grid;
    grid-template-columns: auto auto auto;
    position: fixed;
    width: 100%;
    bottom: 0;

}

#menu>div{ /* - items - */
    text-align: center;
    padding: 3px;
    opacity: 0.8;
    line-height: 1;
}
#menu>div:hover{ /* - items - */
    background-color: #d7bf99;;
    box-shadow: inset 0px 0px 5px grey;
    opacity: 0.9;
}
#menu>div.select{ /* - items - */
    background-color: #d7bf99;;
    font-weight: bold;
    opacity: 1;

}

/* --------------------- تنطیم نمایش در موبایل ----------------- */
@media screen and (min-width: 700px) {
    #menu{
        display: none;
    }
}