/* Transaction Detail Page Styles */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font: 500 14px/1.2 "Montserrat", system-ui;
  color: #6c757d;
}

.breadcrumb-item {
  color: inherit;
  text-decoration: none;
  transition: color .15s ease;
}

.breadcrumb-item:hover {
  color: #003EFF;
}

.breadcrumb-item.active {
  color: #0B0B0E;
  font-weight: 600;
}

.breadcrumb-separator {
  color: #dee2e6;
}
.tx-detail-grid svg{
  transform: rotate(180deg); transform-origin: center;
}
/* --- responsive overrides added by agent: transazione view --- */
@media (max-width: 768px) {
  .tx-grid-wrap { grid-template-columns: 1fr !important; }
  .tx-thumb { width: 100%; }
  .tx-detail-box {
    margin-bottom: 64% !important;
}
}
@media (min-width: 350px) and (max-width: 550px) {
  .tx-meta { display: none; }
  .tx-cta { width: 100%; }
}
