
/* -–---------------------- WORDPRESS TABLES -------------------- */
/* add styling to tables used in the wordpress block editor */



.wp-block-table{
    font-size: 1.125rem;
}
@media (max-width: 480px) {
    .wp-block-table{
        font-size: 1rem;
    }
}

.wp-block-table tr, 
.wp-block-table thead{
    border-bottom: var(--casey-grey-400) !important;
    border-bottom-width: 1px !important;
    border-bottom-style: solid !important;
}

.wp-block-table td,
.wp-block-table th{
    border: 0px solid !important;
    vertical-align: top;
}
  

.wp-block-table thead{
    background-color: var(--casey-blue-700);
    color: white;
    font-weight: 700;

}
.wp-block-table th{
    text-align: left;   
}

