/**
* Theme Name: Bluebell Child
* Description: This is a child theme of Bluebell, generated by Merlin WP.
* Author: <a href="http://themeforest.net/user/theme-kalia">Theme Arc</a>
* Template: bluebell
* Version: 1.3
*/
/* Responsive table wrapper */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table td, table th {
    padding: 8px;
    text-align: left;
    white-space: nowrap;
}

/* Add responsiveness to smaller screens */
@media (max-width: 767px) {
    table {
        width: 100%;
    }

    .table-responsive {
        display: block;
        overflow-x: auto;
    }

    table td, table th {
        white-space: nowrap; /* Prevent wrapping of text */
    }
}

