/* Dashboard Styles */
.dashboard-container {
  padding: 40px 20px;
}
.dashboard-container h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.4rem;
}
.dashboard-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.dashboard-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 600px;
  padding: 20px;
}
.dashboard-card h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
  color: #2a5298;
}
.card-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.card-tabs .tab-btn {
  background: #ddd;
  border: none;
  padding: 10px 20px;
  margin: 0 5px;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 1.1rem;
}
.card-tabs .tab-btn.active,
.card-tabs .tab-btn:hover {
  background: #2a5298;
  color: #fff;
}
.card-content {
  padding: 10px;
}
