/* Shared MudTable styling for the Cool Company WASM apps (CC.Web.Admin.WASM, CC.BusinessDashboard.WASM).
   Consumed via _content/CC.Core.ComponentsLibrary/css/mudTableStyles.css — see
   https://learn.microsoft.com/en-us/aspnet/core/razor-pages/ui-class#consume-content-from-a-referenced-rcl
   Relies on the --cc-* custom properties each consuming app already defines on :root. */

.mud-table-container {
    border: 1px solid var(--cc-gray-lighter);
    border-radius: 5px;
    margin: 25px;
    width: unset !important;
}

.mud-table-head {
    background: var(--cc-gray-lightest);
}

.mud-table-cell {
    padding: 3px 20px 3px 20px !important;
    height: 55px !important;
    font-size: 16px !important;
    color: var(--cc-gray-darker) !important;
}

.mud-table-head .mud-table-cell {
    padding: 0px 20px 0px 20px !important;
    height: 53px !important;
    font-size: 14px !important;
    color: var(--cc-black) !important;
}

.mud-table-sort-label {
    font-weight: bold;
}
