
/* When wrapTitle is set, override Vuetify's internal truncation on toolbar title */
.toolbar-title-wrap[data-v-e1deba22] .v-toolbar-title {
  flex: 1 1 auto;
}
.toolbar-title-wrap[data-v-e1deba22] .v-toolbar-title__placeholder {
  overflow: visible;
  text-overflow: unset;
  white-space: normal;
}
/* Same wrapping behavior for the default card-title header (long entity
   names) — the title's div grows to fill the row instead of being clipped */
.card-title-wrap[data-v-e1deba22] {
  flex-wrap: wrap;
}
.card-title-wrap > div[data-v-e1deba22]:first-child {
  min-width: 0;
  flex: 1 1 auto;
  white-space: normal;
  word-break: break-word;
}
/* Vuetify 4: v-card-title sets overflow:hidden which clips icons — restore visible */
[data-v-e1deba22] .v-card-title {
  overflow: visible;
}
