/* Ensure parent box clips the footer to its rounded corners */
.box:has(.box-timestamp-footer) {
  overflow: hidden;
}

/* Timestamp footer for Bulma .box components
   Displays created/updated timestamps in a compact footer strip.
   Used on: invoice details, action details, ticket details */
.box-timestamp-footer {
  margin: var(--arp-space-4) -1.25rem -1.25rem;
  padding: var(--arp-space-2-5) var(--arp-space-5);
  border-top: 1px solid var(--arp-border-subtle);
  background: #fafafa;
  display: flex;
  flex-wrap: wrap;
  gap: var(--arp-space-6);
  color: var(--arp-text-muted);
  font-size: var(--bulma-size-small);
}

.box-timestamp-footer i {
  margin-right: 0.35rem;
}

[data-theme="dark"] .box-timestamp-footer {
  border-color: var(--arp-gray-700);
  background: #1a1f2e;
}
