body {
    display: flex;
    justify-content: center;
}

table {
    border-collapse: collapse;
}

th,
td {
    border: 3px solid black;
    padding: 10px;
}

td {
    text-align: right;
}

th > p:nth-child(3) {
    font-weight: normal;
}

/* Modifiers */
.text-left {
    text-align: left;
}
.text-top-left {
    text-align: left;
    vertical-align: top;
}

.text-center {
    text-align: center;
}

.text-bold {
    font-weight: bold;
}

.medium-width {
    width: 100px;
}

.large-width {
    width: 200px;
}

.no-border-bottom {
    border-bottom: none;
}
.no-border-top {
    border-top: none;
}
