/* styles.css */

body {
    font-family: Arial, sans-serif;
    padding: 20px;
}

.savings-section {
    display: block;
    margin-bottom: 20px;
}

.savings-table {
    border-collapse: collapse;
    width: 100%;
}

.savings-table th, .savings-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.savings-table th {
    background-color: #f2f2f2;
}

input[type="text"] {
    width: calc(100% - 22px);
    padding: 10px;
    margin-bottom: 10px;
}

button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

@media (min-width: 600px) {
    .savings-section {
        display: inline-block;
        vertical-align: top;
        width: 45%;
        margin-right: 20px;
    }
}

@media (max-width: 599px) {
    .savings-section {
        width: 100%;
    }
}