/* Transactions page styles */

.filters {
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.filters.hidden {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

.filter-input {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 13px;
  min-width: 150px;
}

.transaction-actions {
  display: flex;
  gap: 5px;
  justify-content: center;
}

.btn-xs {
  padding: 5px 8px;
  font-size: 12px;
}

/* Transactions table responsive */
#transactionsTable {
  width: 100%;
  border-collapse: collapse;
}

#transactionsTable thead th {
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  color: #666;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}

#transactionsTable tbody tr {
  cursor: pointer;
  transition: background-color 0.2s;
  border-bottom: 1px solid #ecf0f1;
}

#transactionsTable tbody tr:hover {
  background-color: #f5f5f5;
}

#transactionsTable tbody td {
  padding: 14px 0;
  font-size: 14px;
  text-align: center;
}

#transactionsTable tbody td:first-child {
  color: #666;
  text-align: center;
}

#transactionsTable tbody td:last-child {
  text-align: center;
}


