#mwdFinancialChart {
    max-width: 100%;
    margin: 0 auto;
}
.mwd-wrap-50-50 {
    display: flex;
    gap: 15px;
}
.mwd-wrap-50-50 .mwd-container {
    flex-grow: 1;
}
.mwd-wrap-70-30 {
    display: flex;
    gap: 15px;
}
.mwd-wrap-70-30 .mwd-container {
    flex-grow: 1;
}
.mwd-wrap-70-30 .mwd-container:first-child {
    flex: 7;
}
.mwd-wrap-70-30 .mwd-container:last-child {
    flex: 3;
}
.mwd-container {
    background-color: white;
    border-radius: 8px;
    border: 1px solid grey;
    padding: 15px;
    margin-bottom: 15px;
}
.mwd-wfc-month-table {
    border-collapse: collapse;
    margin-left: 15px;
}
.mwd-wfc-month-table thead tr th,
.mwd-wfc-month-table tbody tr td {
    border-bottom: 2px solid grey;
    border-right: 1px solid #bcbcbc;
    border-left: none;
    padding: 4px 10px;
}
.mwd-wfc-month-table tbody tr td {
    border-bottom: 1px solid #e1e1e1;
}
.mwd-wfc-month-table thead tr th:first-child,
.mwd-wfc-month-table tbody tr td:first-child {
    padding-left: 0;
}
.mwd-wfc-month-table thead tr th:last-child,
.mwd-wfc-month-table tbody tr td:last-child {
    border-right: none;
    padding-right: 0;
    text-align: right;
}
.mwd-wfc-month-table tbody tr.mwd-wfc-year-row td {
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 110%;
    font-weight: bold;
}