*{
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}


body{
    margin:0;
    background:#f2f4f7;
    color:#333;
}


.header{
    background:#d71920;
    color:white;
    padding:20px;
    text-align:center;
}


.header h1{
    margin:0;
    font-size:28px;
}



.dashboard{

    display:flex;
    flex-wrap:wrap;
    gap:15px;
    padding:20px;
    justify-content:center;

}


.box{

    background:white;
    width:160px;
    padding:20px;
    text-align:center;
    border-radius:10px;
    box-shadow:0 3px 8px #ccc;

}


.box h3{

    margin:5px;

}


.box span{

    font-size:30px;
    font-weight:bold;

}



.pending{
    border-top:5px solid gray;
}


.released{
    border-top:5px solid green;
}


.workdone{
    border-top:5px solid orange;
}


.finished{
    border-top:5px solid blue;
}




.container{

    width:95%;
    max-width:1200px;
    margin:auto;

}



.card{

    background:white;
    padding:20px;
    margin-bottom:20px;
    border-radius:10px;
    box-shadow:0 3px 10px #ddd;

}



h2{

    color:#d71920;

}




input{

    width:250px;
    padding:12px;
    margin:5px;
    border:1px solid #aaa;
    border-radius:5px;
    font-size:16px;

}




button{

    padding:12px 20px;
    margin:5px;
    border:none;
    background:#d71920;
    color:white;
    border-radius:5px;
    cursor:pointer;

}



button:hover{

    background:#a90000;

}




#suggestions{

    width:400px;
    background:white;
    border:1px solid #ccc;
    position:absolute;
    z-index:10;

}



.suggestion{

    padding:10px;
    cursor:pointer;

}



.suggestion:hover,
.activeSuggestion{

    background:#eee;

}




#details{

    margin-top:20px;
    padding:15px;
    border-left:5px solid #d71920;
}




.statusBox{

    margin-top:15px;

}



.statusBox label{

    display:block;
    margin:10px;
    font-size:18px;

}




table{

    width:100%;
    border-collapse:collapse;

}



th{

    background:#d71920;
    color:white;
    padding:12px;

}


td{

    padding:10px;
    border:1px solid #ddd;
    text-align:center;

}




.statusPending{

    color:gray;
    font-weight:bold;

}


.statusReleased{

    color:green;
    font-weight:bold;

}


.statusWork{

    color:orange;
    font-weight:bold;

}


.statusFinished{

    color:blue;
    font-weight:bold;

}





.filters{

    margin-bottom:10px;

}





@media(max-width:700px){


input,
#suggestions{

    width:100%;

}


.dashboard{

    flex-direction:column;
    align-items:center;

}


.box{

    width:90%;

}


table{

    font-size:12px;

}


}