table {
    width: auto;

    //min-width: 100%;
    overflow: hidden;
    border: 1px solid var(--rocket-color-grey-300);
    border-radius: var(--rocket-components-border-radius);
    border-collapse: separate;
    border-spacing: 0;

    th, td {
        min-width: 4rem;
        font-weight: 400;
        font-size: 1.875rem;
        line-height: 1.33;
    }

    th {
        padding: 1rem;
        color: var(--rocket-color-white-base);
    }

    td {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--rocket-color-grey-300);
    }

    tr:last-child {
        td {
            border: none;
        }
    }

    thead {
        background-color: var(--rocket-color-primary-100);
    }

    caption {
        font-size: 1.5rem;
    }
}
