#ledgers {
  display: grid;
  gap: 1.5rem;
}

.ledger-section {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.ledger-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.ledger-section__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.ledger-section__meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.ledger-section__actions {
  display: flex;
  gap: 0.5rem;
}

.ledger-section__actions button {
  border: none;
  border-radius: 4px;
  padding: 0.35rem 0.75rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  transition: background 0.2s ease;
}

.ledger-section__actions button:hover {
  background: rgba(255, 255, 255, 0.16);
}

.ledger-empty {
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

