* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
}

.container {
    width: 100%;
    margin-top: 60px;
    display: flex;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

.container .title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.input-fields {
    width: 1170px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    
}

.input-fields input, .input-fields select {
    padding: 1rem;
    margin: 0.5rem;
    width: 70%;
    outline: none;
    border: none;
    border-radius: 10px;
}

label {
    font-size: 0.9rem;
}

.input-fields button {
    width: 300px;
    padding: 1rem 1rem;
    border: none;
    border-radius: 10px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
}   

.expense-list-title {
    font-size: 1.2rem;
    margin: 2rem 0;
    text-align: center;
}

.table {
    background-color: white;
    padding: 20px;
    max-width: fit-content;
    text-align: center;
    margin: 0 auto;
    width: 1170px;
    border-collapse: collapse;
}

.table th, .table td {
    padding: 0.5rem;
    text-align: center;
    width: 200px;
    border: none !important;
}

table .table-headings {
    background-color: black;
    color: white;
}

table .total {
    background-color: green;
    color: white;
    border-radius: 10px;
}

table button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 10px;
    background-color: red;
    color: white;
    cursor: pointer;
}   

#total {
    font-size: 1rem;
    font-weight: bolder;

}   

.saveBtn {
    margin-top: 20px;
    width: 200px;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 10px;
    background-color: green;
    color: white;
    cursor: pointer;
}   