@font-face {
    font-family: BYekan;
    src: url('./fonts/BYekan.ttf'),
         url('./fonts/BYekan.eot'),
         url('./fonts/BYekan.woff'),
         url('./fonts/BYekan.woff2');
}
*{
    font-family: BYekan;
    margin: 0;
    padding: 0;
}
html{
    direction: rtl;
}
a{
    text-decoration: none !important;
}
.p-1{
    padding: 1rem;
}
.text-center{
    text-align: center;
}
.red{
    color: red !important;
}
.height-100{
    height: 100vh;
}
.height-inherit{
    height: inherit;
}
.flex-center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.display-flex{
    display: flex;
}
.justify-space-between{
    justify-content: space-between;
}
.w-25{
    width: 25% !important;
}
.mt-05{
    margin-top: 0.5rem;
}
.mlr-auto{
    margin: 1rem auto;
}
.flex-end{
    justify-content: flex-end;
}
.gap-1{
    gap: 1rem;
}
.gap-3{
    gap: 3rem;
}
.btn{
    padding: 10px 20px;
    background-color: royalblue;
    color: white;
    border-radius: 0.5rem;
    text-align: center;
    border: 0;
    cursor: pointer;
}

.btn-light{
    background-color: rgba(220,220,220, 0.5);
    color: #333;
}
.btn-danger{
    background-color: red;
    color: #333
}
main{
    height: 100vh;
}
.header{
    height: 5rem;
    background-color: royalblue;
    color: white;
    box-shadow: 0 0 1px 3px gray;
}
.header a{
    color: white;
    text-decoration: none;
}
.header nav ul{
    list-style-type: none;
    align-items: center;
    height: 100%;
    padding: 0.5rem;
}
.header nav li{

}
.footer{
    height: 5rem;
    background-color: #333;
    color: white
}
.form-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    background-color: rgba(180,180,240, 0.2);
    padding: 0.5rem;
}
.form-head > div:first-child{
    display: flex;
}
.form-head > div:last-child{
    display: flex;
    gap: 2rem;
}
.form-logo{
    background-color: royalblue;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    box-shadow: inset 0px -5px gray;
}
.evaluation-form{
    margin: 10px;
    padding: 0.5rem;
}
.evaluation-form > div{
    padding: 0.5rem;
    border: 1px solid rgba(220,220,220, 0.5);
}
.evaluation-form input[type=text]{
    border: 1px solid rgba(220,220,220, 0.5);
    outline: 0;
    height: 2rem;
    padding: 5px;
    border-radius: 0.5rem;
}
.evaluation-form input[type=text]:focus{
    border: 2px solid royalblue;
}
.evaluation-form input[type=radio]{
    border-radius: 3px;
    border: 1px solid rgba(220,220,220, 0.8);
    width: 20px;
    height: 20px;
    appearance: none;
    position: relative;
    box-sizing: content-box !important;
    font-size: 9pt ;
}

.evaluation-form input[type=radio]:checked::after{
    content: '\2713';
    color: blue;
    position: absolute;
    width: 100%;
    height: 100%;
    font-weight: 700;
    border: 3px solid blue;
    border-radius: 3px;
    text-align: center;
}
.form-table{
    width: 100%;
    margin-top: 1rem;
    border: 1px solid rgba(220,220,220, 0.5);
    border-spacing: 0;
    text-align: center;
}
.form-table thead th{
    background-color: rgba(220,220,220, 0.5);
    
}
.form-table tr{
    height: 4rem;
}
.form-table tbody td{
    border-bottom: 1px solid rgba(220,220,220, 0.5);
}
.evaluation-d span, .evaluation-d input{
    display: flex;
    height: 4rem;
    justify-content: center;
    align-items: center;
}
.form-footer{
    margin-top: 1rem;
}
.form-footer span{
    font-weight: 700;
}
.dashboard{
    display: flex;
    width: 100%;
}
.dash-menu{
    height: 100vh;
    background-color: navy;
    color: white;
    flex: 0.2
}
.dash-menu ul li{
    text-align: center;
    width: 100%;
}
.dash-menu li a{
    color: white;
    text-decoration: none;
    display: block;
    padding: 1rem;
}
.dash-menu ul li:hover a{
    background-color: orange;
    color: #333;
}
.dash-menu h1{
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 2rem;
}
.dash-content{
    flex: 0.8
}
.dash-content .users-table{
    text-align: center;
    border: 1px solid navy;
    border-radius: 1rem !important;
    margin: 2rem auto;
    padding: 1rem;
}
.dash-content .users-table tr:first-child{
    background-color: #eee !important;
    color: #333
}
.dash-content td, .dash-content th{
    padding: 0.5rem;
}
.btn a{
    color: white
}