/*------- statement -----------*/
.bordered-table {
    border-collapse: collapse;
    width: 100%;
}

    .bordered-table td {
        border-spacing: 0;
        border: 1px solid black;
        padding: 5px;
        text-align: center;
    }

.unbordered-table {
    border-collapse: collapse;
    width: 100%;
}

    .unbordered-table td {
        border-spacing: 0;
        border: 0;
        padding: 5px;
        text-align: left;
    }

.text-right {
    text-align: right !important;
}

.text-left {
    text-align: left !important;
}

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

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

hr {
    border-color: black;
}