.table__container {
    margin-top: 1rem;
    overflow-x: auto;
}

.table__table {
    width: 100%;
    border-collapse: collapse;
}

.table__table caption,
.table__table th {
    text-align: left;
}

.table__table thead tr,
.table__table tbody tr {
    border-bottom-style: solid;
}

.table__table th,
.table__table td {
    padding: 0.5rem 1rem;
    vertical-align: top;
}

@media (max-width: 47.999rem) {
    .table__table {
        min-width: 44.5rem;
    }
}

@media (min-width: 48rem) {
    .collapsible__content .section:first-child .table__container {
        margin-top: 0;
    }
}

