.wp-table-container{
    overflow: auto;
}

table.wp-table{
    border-collapse: collapse;
    margin-bottom: 2.4rem;
    text-align: left;
    caption{
        caption-side: bottom;
        padding-top: 0.8rem;
        font-size: 1.4rem;
        text-align: left;
    }
    thead{
        tr{
            th:first-child{
                border-radius: 1rem 0 0 0;
            }
        }
    }
    tbody{
       tr:last-child{
           *:last-child{
               border-radius: 0 0 1rem 0;
           }
       }
    }
    tr{
        th, td{
            vertical-align: middle !important;
            border: 2px solid #fff !important;
            padding: 0.8rem 1.5rem !important;
        }
    }
}

table.wp-table--fullwidth {
    width: 100%;
}



table.wp-table--condensed {
    max-width: 100%;
    table-layout: auto;
    width: max-content;
}
