.bg-purple {
  background-color: #6f42c1 !important;
}

.bg-teal {
  background-color: #20c997 !important;
}

.bg-pink {
  background-color: #e83e8c !important;
}

.bg-indigo {
  background-color: #6610f2 !important;
}

.bg-cyan {
  background-color: #17a2b8 !important;
}

.text-purple {
  color: #6f42c1 !important;
}

.text-teal {
  color: #20c997 !important;
}

.text-pink {
  color: #e83e8c !important;
}

.text-indigo {
  color: #6610f2 !important;
}

.text-cyan {
  color: #17a2b8 !important;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-color, #0D47A1) 0%, var(--secondary-color, #1976D2) 100%) !important;
}

.card-box {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.card-box:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.header-title {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.progress-bar.bg-gradient-primary {
  background: linear-gradient(90deg, var(--primary-color, #0D47A1) 0%, var(--secondary-color, #1976D2) 100%) !important;
}

.footer a {
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-color, #0D47A1) !important;
  text-decoration: none;
}

.footer .mdi {
  transition: all 0.3s ease;
}

.footer a:hover .mdi {
  transform: scale(1.2);
}
