/* ✅ Universal table fixes */

/* Allow long text like scheme names to wrap */
.table td, .table th {
    white-space: normal !important;
    word-wrap: break-word;
}

/* Optional: set a decent max-width for wide columns */
.table td {
    max-width: 400px;
}

/* Scheme column specifically */
.scheme-column {
    max-width: 400px;
    white-space: normal !important;
}
