/* 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: 1rem -1.25rem -1.25rem;
  padding: 0.625rem 1.25rem;
  border-top: 1px solid #f3f4f6;
  background: #fafafa;
  border-radius: 0 0 var(--bulma-radius) var(--bulma-radius);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: #6b7280;
  font-size: var(--bulma-size-small);
}

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

[data-theme="dark"] .box-timestamp-footer {
  border-color: #374151;
  background: #1a1f2e;
  color: #9ca3af;
}
