*{
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    text-decoration: none;
    box-sizing: border-box;
    font-family: "Poppins",sans-serif;
}
body{
    direction:rtl;
    background:#dfe9f5;
}

nav{
    position:absolute;
    top:0;
   
    height: 100%;
    right:0;
    background:#fff;
    width: 130px;
    overflow:auto;
    transition: width 0.2s linear;
    box-shadow: 0 20px 35px rgba(0,0,0,0.1);
}
.logo{
    text-align: center;
    display: flex;
    transition:all 0.5s ease;
    margin:10px 0 0 10px;
}
.logo img{
    width:110px;
    height:110px;
}
/* a{
    position:relative;
    color:#000;
    font-size:14px;
    display:table;
    width:300px;
    padding: 10px;
} */
.nav-link{
    position:relative;
    color:#000;
    font-size:14px;
    display:table;
    width:300px;
    padding: 10px;
}
.fas,
.svg-inline--fa,
.fa-user-plus,
.fa-plus,
.fa-internet-explorer,
.fa-money-bill-transfer,
.fa-circle-h,
.fa-person,
.fa-ban,
.fa-person,
.fa-people-group,
.fa-right-from-bracket{
    position:relative;
    width: 70px;
    height:25px;
    top:0;
    right:20px;
    font-size: 25px;
    
    text-align: center;
}
span{
    margin-right: 53px;
   
}
 .nav-item{
    position:relative;
    top: 12px;
    margin-right: 60px;
   
}
a:hover{
    background:#eee;
}
nav:hover{
    width:280px;
    transition:all 0.5s ease;
} 
.logout{
    position:relative;
    bottom:25px;
    margin-top: 120px;
}
#home{
    position:absolute;
    right: 270px;
    top: 20px;
    width:77%;
}
label{
    color:#000;
}
.dataTables_wrapper .dataTables_info{
    color:#000;
}
table {     
    border-collapse: collapse;
    width: 800px;
    height: 90px;
    /* border: 1px solid #bdc3c7; */
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2), -1px -1px 8px rgba(0, 0, 0, 0.2);
}
table.dataTable tbody tr{
    background-color: #fff;

}
tr {
    transition: all .2s ease-in;
    cursor: pointer;
    color: #000;
}
tr:hover {
    background:#fff;
    transform: scale(1.02);
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2), -1px -1px 8px rgba(0, 0, 0, 0.2);
}
.odd:hover{
    background:linear-gradient(135deg,#171716,orange);
}
th,
td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    color: #000;
   
}
.dataTables_wrapper .dataTables_filter{
    margin-bottom: 15px;
   
}
input[type="search"]{
    background:#fff;
    color:#000;
}
.dataTables_wrapper{
    margin:20px;
}
#container{
    max-width: 700px;
    width: 100%;
    margin-right:290px ;
    padding: 25px 30px;
    border-radius:25px;
    background:#fff;
    margin-top:100px;
}
#container .heading{
    font-size:25px;
    font-weight:500;
    position: relative;
    text-align:center;
    padding:0 0 20px 0;
}
#container .heading::before{
    content: " ";
    position: absolute;
    height:3px;
    left:0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(135deg,#000,orange);
}
#container form .card-details{
    margin-top:25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
form .card-details .card-box{
    width:calc(100%/ 2 - 20px);
    margin-bottom:15px;
}
.card-details .card-box .details{
    display:block;
    font-weight:500;
    margin-bottom:5px;
    font-size:20px;
}
.card-details .card-box input,
.card-details .card-box select{
    height:45px;
    width:100%;
    outline:none;
    border-radius:5px;
    border: 1px solid #ccc;
    padding-left:15px;
    font-size:16px;
    border-bottom-width:2px;
    transition:all 0.3s ease;
}
.card-details .card-box input:focus
.card-details .card-box input:valid{
    border-color: #9b59b6;
}
form .circal-form .circal-title{
    font-size:20px;
    font-weight:500;
    border-bottom:2px solid ;
}
form .circal-form .category{
    margin-top:10px;
    margin-bottom:10px;
}
form .button{
    text-align:center;
}
form .button input{
    padding:10px 0;
    margin-top:10px;
    height:100%;
    width:50%;
    outline:none;
    color:#fff;
    border:none;
    font-size:18px;
    font-weight:500;
    border-radius:5px;
    letter-spacing:1px;
    background: linear-gradient(135deg,#000,orange);
}
form .button input:hover{
    background: linear-gradient(-135deg,#000,orange);
}
@media (max-width: 584px) {
    #container{
        max-width:100%;
    }
    form .card-details .card-box{
        margin-bottom:15px;
        width: 100%;
    }
    form .circal-form .category{
        width:100%;
    }
    #container form .card-details{
        max-height:300px;
        overflow:scroll;
    }
    .card-details::_webkit-scrollbar{
        width:0;
    }
}