.finance-table-wrapper {
    margin: 20px 0;
}

.finance-table-wrapper.hidden {
    display: none;
}

.finance-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
}

.finance-table th,
.finance-table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

.finance-table th {
    background-color: #f5f5f5;
    font-weight: bold;
    color: #333;
}

.finance-table td {
    color: #666;
}

.finance-table tr:hover {
    background-color: #f9f9f9;
}

/* Match the orange color from the image */
.finance-table th {
    color: #ff6634;
}

/* Make amounts right-aligned */
.finance-table td.monthly-payment,
.finance-table td.total-amount {
    text-align: right;
}

/* Bold the amounts */
.finance-table td.monthly-payment,
.finance-table td.total-amount {
    font-weight: bold;
}