/*
Base visual rules.
Keep this file for document-wide HTML/body/link/text behavior only.
*/

.erp-muted {
    color: var(--theme-muted, #64748b);
}

.erp-nowrap {
    white-space: nowrap;
}

.erp-truncate {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

