/* Responsive Content Table Styles */
.entry-content {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    table-layout: auto;
}

.entry-content table th,
.entry-content table td {
    padding: 10px 14px;
    border: 1px solid #ddd;
    text-align: left;
}

@media screen and (max-width: 768px) {
    .entry-content {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .entry-content table {
        display: block;
        width: 100% !important;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }

    .entry-content table th,
    .entry-content table td {
        white-space: normal;
        min-width: 110px;
        word-break: break-word;
    }
}
