.bg{
    background: linear-gradient(90deg, #e44d26 0%, #f16529 100%) !important;
}
.additional_note{
    background: #f8f9fa !important;
    color: #000 !important;
}







/* --------------------------------------- income grou table --------------------------------------- */
.table_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
table {
    flex-basis: calc(100% / 2 - 5px);
    margin-bottom: 1rem;
    border-collapse: collapse;
}
@media screen and (max-width: 600px) {
    table {
        flex-basis: calc(100% - 10px);
    }  
    .table_container {
        flex-direction: column;
        align-items: center;
    }  
}
table th,
table td {
    padding: 0.5rem 1rem;
    vertical-align: middle;
    border: 1px solid #ddd;
}

table thead th {
    background: #f16529;
    border-bottom: 2px solid #ddd;
    color: #ffffff;
}

/* if need to center specific td  */
table td:nth-child(2), table th:nth-child(2){
    text-align: right;
}
table th:nth-child(1), table td:nth-child(1){
    text-align: left;
}