* {
    box-sizing: border-box;
}

.list-view-table{
    background-color: #fff;
    margin: 0 auto;
    width: 80%;
    box-shadow: 3px 3px 3px 3px #808080;
    border-collapse: collapse;
}

th {
    font: 25px "EucrosiaUPC";
    height: 50px;
    border: 1px solid;
    background-color: rgb(5, 223, 237);
}

td {
    border: 2px solid;
}

tr {
    text-align: center;
    font: 25px "Arabic Typesetting";
}

tr:hover {
    background-color: gray;
}

a{
   background-color: rgba(5, 223, 237, 0.93);
   text-decoration: none;
   color: rgb(43, 40, 41);
   display: block;
   width: 150px;
   height: 30px;
   line-height: 25px;
   text-align: center;
   border: 2px solid #fff;
   border-radius: 5px;
   font: 24px "Arabic Typesetting";
}

input[type="text"] {
    display: block;
    width: 15%;
    border-radius: 5px;
    margin: 0 auto;
    background-color: rgb(214, 214, 214);
}

input[type="text"]:focus{
    outline: none;
}

input[type="submit"] {
    display: block;
    width: 10%;
    margin: 0 auto;
    font: 25px "Arabic Typesetting";
    background-color: rgb(227, 227, 227);
}
