/* Responsive Tables - Constrained Width */

/* Prevent horizontal overflow */
.table-container {
    max-width: 100%;
    overflow-x: auto;
}

/* Table sizing constraints */
.table {
    max-width: 100% !important;
    table-layout: fixed !important;
}

/* Ensure text doesn't break container */
.table th,
.table td {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 0 !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .table {
        min-width: 800px;
    }
    
    .table th,
    .table td {
        font-size: 0.75rem !important;
        padding: 0.5rem !important;
    }
} 