.dashboard-section {
  background: #000;
  padding: 4rem 0;
}

.dashboard-section .container-fluid {
  max-width: 1400px;
}

.dashboard-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
}

.dashboard-left h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #00C853;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.dashboard-left h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.dashboard-left .description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 500px;
}

.btn-access {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #00C853;
  color: #000;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
}

.btn-access:hover {
  background: #00E05F;
  color: #000;
  transform: translateY(-2px);
}

.chart-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 200, 83, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  margin-top: 2rem;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.chart-header h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.chart-legend {
  display: flex;
  gap: 1.5rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-dot.blue { background: #4DABF7; }
.legend-dot.orange { background: #FF922B; }

.chart-svg {
  width: 100%;
  height: 220px;
}

.dashboard-right {
  display: flex;
  flex-direction: column;
}

.activity-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 200, 83, 0.2);
  border-radius: 1.5rem;
  padding: 1.5rem;
  flex: 1;
}

.activity-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.activity-icon {
  width: 32px;
  height: 32px;
  background: rgba(0, 200, 83, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00C853;
}

.activity-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 1rem;
}

.activity-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}

.activity-info {
  flex: 1;
  min-width: 0;
}

.activity-name {
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.activity-type {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.activity-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.activity-amount {
  color: #00C853;
  font-weight: 600;
  font-size: 0.9rem;
}

.activity-time {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

.activity-status {
  padding: 0.35rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}

.activity-status.success {
  background: rgba(0, 200, 83, 0.15);
  color: #00C853;
}

.activity-status.pending {
  background: rgba(255, 146, 43, 0.15);
  color: #FF922B;
}

@media (max-width: 992px) {
  .dashboard-content {
    grid-template-columns: 1fr;
  }

  .dashboard-left h3 {
    font-size: 2rem;
  }
}