.financial-table {
    width: 100%;
    margin: 2rem 0;
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.financial-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.financial-table tbody tr:last-child {
    border-bottom: none;
}

.financial-table td {
    padding: 1rem;
    color: var(--text-secondary);
}

.financial-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
    background-color: rgba(240, 137, 13, 0.05);
}

.financial-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: #F0890D;
    font-size: 1.1rem;
}

.disclaimer {
    background-color: rgba(240, 137, 13, 0.05);
    border: 1px solid rgba(240, 137, 13, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.disclaimer p {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.disclaimer p:last-child {
    margin-bottom: 0;
}

.disclaimer strong {
    color: #F0890D;
}

.disclaimer a {
    color: #F0890D;
    text-decoration: none;
}

.disclaimer a:hover {
    text-decoration: underline;
}