/* Ensure proper wrapping in table cells */
table {
    table-layout: fixed; /* Enforce column widths */
    width: 100%; /* Ensure table fits within page */
}

table th, table td {
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words if necessary */
    overflow-wrap: break-word; /* Compatible with modern browsers */
}

/* Override sphinx_rtd_theme's table styles */
.rst-content table th, 
.rst-content table td {
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}
