﻿table.special-table {
    width: 100%;
    border-collapse: collapse;


}

    /* Only targets table cells (th, td) within tables with the "special-table" class */
    table.special-table th,
    table.special-table td {
        border: 0px solid black;
  
    }

/* Media query for screens larger than 768px */
@media (min-width: 768px) {
    table.special-table {
        table-layout: fixed;

    }
        table.special-table th,
        table.special-table td {
            width: 25%;

        }
}

/* Media query for screens smaller than 768px */
@media (max-width: 767px) {
    table.special-table th,
    table.special-table td {
        display: block;
        width: 100%;
        padding-right: 5px;
    }
}
