/* Responsive scroll wrapper */
.blog-single {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
}

/* Table base styles */
.blog-single table {
    width: 100%;
    border-collapse: collapse;
}

/* Table cells */
.blog-single table th,
.blog-single table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
}

/* Zebra rows */
.blog-single table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Only prevent wrapping on small screens */
@media (max-width: 768px) {
    .blog-single table {
        min-width: 600px; /* forces horizontal scroll without breaking layout */
    }

    .blog-single table th,
    .blog-single table td {
        white-space: nowrap;
    }
}
