/* Production-scoped layout fix for the journal date picker on short displays.
   The calendar may scroll; the confirmation controls must remain visible. */
[data-slot="dialog-content"]:has(.rmdp-shadcn-shell) {
  grid-template-rows: auto minmax(0, 1fr) auto !important;
  padding: 1rem !important;
  overflow: hidden !important;
}

[data-slot="dialog-content"]:has(.rmdp-shadcn-shell) > div:nth-child(2) {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-inline: .25rem;
}

[data-slot="dialog-content"]:has(.rmdp-shadcn-shell) > [data-slot="dialog-footer"] {
  flex-shrink: 0;
  border-top: 1px solid var(--border);
  padding-top: .75rem;
}
