/* Fees page specific styles */
.fees-body {
  background: #0E0F1E;
  min-height: 100vh;
  padding: 2rem 1rem;
}

.fees-container {
  background: #1C1F2E;
  color: white;
  border-radius: 1.5rem;
  padding: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fees-header {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: rgba(28, 31, 46, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
}

.stat-title {
  font-size: 1rem;
  color: #9CA3AF;
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: #3B82F6;
  word-break: break-word;
}

.stat-subtitle {
  font-size: 0.875rem;
  color: #9CA3AF;
  margin-top: 0.5rem;
}

.history-section {
  background: rgba(28, 31, 46, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 2rem;
}

.history-header {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #fff;
}

.history-table {
  width: 100%;
  border-collapse: collapse;
}

.history-table th {
  background: rgba(28, 31, 46, 0.3);
  padding: 1rem;
  text-align: left;
  color: #9CA3AF;
  font-weight: 500;
  font-size: 0.875rem;
}

.history-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.875rem;
}

.history-table tr:last-child td {
  border-bottom: none;
}

.amount {
  font-family: monospace;
}

.date {
  color: #9CA3AF;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .fees-container {
    padding: 1.5rem;
    margin: 1rem auto;
  }

  .fees-header {
    font-size: 1.75rem;
  }

  .history-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}


/* Stats page specific styles */
.stats-body {
  background: #0E0F1E;
  min-height: 100vh;
  padding: 2rem 1rem;
}

.stats-container {
  background: #1C1F2E;
  color: white;
  border-radius: 1.5rem;
  padding: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-header {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.total-value {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.total-label {
  color: #fff;
}

.total-amount {
  color: #3B82F6;
  font-weight: bold;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: rgba(28, 31, 46, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.stat-title {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1rem;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: bold;
  color: #3B82F6;
  margin-bottom: 0.5rem;
}

.stat-subtitle {
  font-size: 0.875rem;
  color: #9CA3AF;
}