.balancesection {
    margin-top: 40px;
}
.balancesection .balanceTableContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 50px 0;
}
.balancesection .chartTitle {
    font-family: "Metropolis Bold";
    font-size: 20px;
    line-height: 1.21;
    letter-spacing: 2.32px;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    width: 100%;
}
.balancesection .titleContainer {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-end;
}

.balancesection .sectionTitle {
    font-family: 'Metropolis Bold';
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: 3.6px;
    color: #333;
}

.balancesection .hLine {
    width: 100%;
    height: 1px;
    margin: 5px 0;
    background-color: #707070;
}

.balancesection .tableContainer {
    border: solid 1px #221f20;
    border-radius: 10px;
	width: fit-content;
}
.balancesection table tr td {
    border-right: 1px solid #221f20;
    border-bottom: 1px solid #221f20;
    padding: 10px 15px;
}

.balancesection table tr td:last-child {
    border-right: none;
}

/* top-left border-radius */

.balancesection table tr:first-child td:first-child {
    border-top: none;
    border-left: none;
}

/* top-right border-radius */

.balancesection table tr:first-child td:last-child {
    border-top: none;
    border-right: none;
}

/* bottom-left border-radius */

.balancesection table tr:last-child td:first-child {
    border-bottom: none;
    border-left: none;
}
.balancesection table tr:last-child td {
    border-bottom: 0;
}
/* bottom-right border-radius */

.balancesection table tr:last-child td:last-child {
    border-bottom: none;
    border-right: none;
}

.balancesection tr td.bold {
    font-family: "Metropolis Bold";
}
