.transaction-history-container {
  padding: 24px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

.transaction-card {
  border-radius: 16px;
  overflow: hidden;
}

.headline-wrapper {
  padding: 24px 32px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.headline-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.headline-text {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.type-filter {
  max-width: 220px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
}

.type-filter .v-input__slot {
  color: white !important;
}

.type-filter .v-label {
  color: rgba(255, 255, 255, 0.9) !important;
}

.type-filter .v-select__selection {
  color: white !important;
}

.type-filter .v-icon {
  color: rgba(255, 255, 255, 0.9) !important;
}

.transaction-table {
  background: transparent;
}

.transaction-table th {
  font-weight: 600 !important;
  font-size: 14px !important;
  color: #2c3e50 !important;
  background-color: #f8f9fa !important;
}

.type-chip {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.amount-text {
  font-size: 16px;
  font-weight: 700;
  font-family: 'Monaco', 'Courier New', monospace;
}

.amount-income {
  color: #27ae60;
}

.amount-expense {
  color: #e74c3c;
}

.amount-freeze {
  color: #f39c12;
}

.amount-unfreeze {
  color: #3498db;
}

.balance-change {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.balance-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.balance-label {
  font-size: 11px;
  color: #7f8c8d;
  font-weight: 600;
  text-transform: uppercase;
}

.balance-value {
  font-size: 13px;
  font-weight: 600;
  color: #2c3e50;
  font-family: 'Monaco', 'Courier New', monospace;
}

.date-column {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.date-main {
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
}

.date-time {
  font-size: 12px;
  color: #95a5a6;
}

.order-id {
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 12px;
  color: #3498db;
  cursor: pointer;
  text-decoration: underline;
}

.order-id:hover {
  color: #2980b9;
}

.loading-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  gap: 20px;
}

.loading-text {
  font-size: 16px;
  color: #7f8c8d;
  margin: 0;
}

.no-data-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  gap: 16px;
}

.no-data-text {
  font-size: 18px;
  color: #95a5a6;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 960px) {
  .headline-wrapper {
    flex-direction: column;
    gap: 16px;
  }

  .type-filter {
    max-width: 100%;
  }

  .balance-change {
    font-size: 12px;
  }
}
