.header{
    display: flex;
    width: 100%;
    height: 60px;
    background-color: rgb(228, 51, 51);
    
}

.logo{
    width: 70%;
    height:100%;
    background-color: rgb(0, 0, 0);
 
    color: white;
    
}

.menu{
    width: 70%;
    height: 100%;
    text-align: end;
    background-color: rgb(0, 0, 0);
    
    
}

.menu li{
    list-style-type: none;
    display: inline-block;

    margin-right: 5%;
    
}

.menu a{
    text-decoration: none;
    color: white;
}



.summary {
    display: flex;
    justify-content: space-around;
    margin: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin: 20px;
}

.card1 {
    width: 25%;
    background: rgb(53, 40, 241);
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.card2 {
    width: 25%;
    background: rgb(14, 249, 245);
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.card3 {
    width: 25%;
    background: rgb(16, 242, 110);
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(204, 230, 7, 0.1);
}

.positive {
    color: green;
    font-weight: bold;
}

button{
     background-color: greenyellow;
     border-color: greenyellow;
}

.search
 {
    width: 100%;
    height: 100px;
    align-items: center;
    display: inline-block;
}
form{
    width: 100%;
    text-align: center;
   margin-top: 2%;

}

form input{
 width: 20%;
 height: 25px;
 border-radius: 2px;
 border: 1px solid black;
 
}

label{
display: block;
margin-top: 5px;
}

button{
    margin-top: 15px;
    width: 10%;
    height: 20px;
}

.list{
    width: 100%;
    height: 300px;
    text-align: start;
    
}

table{
    width: 100%;
    
}
#head{
    background-color: rgb(141, 140, 140);
}

th{
     
     text-align: start;
     border-bottom: 1px solid gray;
     padding: 5px;
     
}
#p{
    font-weight: bold;
    font-size: large;
    color: aliceblue;
}



