/* Hemiton Global Tables Plugin - Frontend Styles v2.0.2 */
/* 
   NOTE: Table styling is primarily handled by inline CSS in the table output.
   This file is loaded to prevent 404 errors and can be extended for future enhancements.
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400;14..32,500;14..32,600&display=swap');

/* Base table wrapper */
.hemiton-table-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Ensure tables are responsive */
.hemiton-table-wrapper table {
    width: 100%;
}

/* Mobile responsive - horizontal scroll support */
@media (max-width: 768px) {
    .hemiton-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {
    .hemiton-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}
