body{
    font-family: "Comfortaa", serif;
}

.header{
    background-color: #476EF7;
    color: white;
    font-size: large;
    padding-left: 25px;
}

.input-form{
    display: flex;
    justify-content: space-around;
    width: 95%;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px #476EF7;
    margin-top: 15px;
    padding: 25px 0;
}

#add-btn{
    background-color: #476EF7;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: x-large;
    font-weight: bold;
    color: white;
}

.inputs{
    width: 30%;
}

.cards{
    display: flex;
    width: 95%;
    margin: auto;
    justify-content: space-between;
}

.card{
    background-color: #476EF7;
    border: none;
    width: 18rem
}

.card-body{
    color: white;
    height: 150px;
}

.transaction-table{
    border: 1px solid black;
    width: 95%;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
    font-weight: 600;
    box-shadow: 0 4px 4px #476EF7;
    padding: 0;
}

#header-row{
    background-color: #476EF7;
}

#header-row th{
    padding: 15px 10px;
    color: white;
}

.delete-button,.delete-button:hover{
    background-color: red;
    border: none;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    margin: 3px 0;
}

@media only screen and (max-width:768px){
    .header{
        background-color: rgb(209, 81, 209);
    }
    .input-form{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        box-shadow: 0 0 10px v;
    }
    .inputs{
        width: 75%;
    }
    #add-btn{
        background-color: rgb(209, 81, 209);
        width: 75%;
        border-radius: 8px;
    }
    .card{
        background-color: rgb(209, 81, 209);
        height: 150px;
        width: 150px;

    }
    .cards{
        flex-wrap: wrap;
        gap: 10px;
        }
    #header-row{
        background-color: rgb(209, 81, 209);
    }
    
}