:root {
  --primary: #2563eb;
  --secondary: #1e40af;
  --accent: #f97316;
  --light: #f8fafc;
  --dark: #0f172a;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f1f5f9;
}

.navbar-brand {
  font-weight: 700;
  color: var(--primary) !important;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.card {
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.progress-bar {
  background-color: var(--primary);
}

.step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}

.step-indicator::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #cbd5e1;
  z-index: 1;
}

.step {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-weight: bold;
  color: #64748b;
}

.step.active .step-circle {
  background-color: var(--primary);
  color: white;
}

.step.completed .step-circle {
  background-color: #10b981;
  color: white;
}

.section-title {
  color: var(--dark);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 10px;
  margin-bottom: 25px;
}

.form-section {
  display: none;
}

.form-section.active {
  display: block;
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.dashboard-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 25px;
  margin-bottom: 25px;
}

.status-badge {
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 500;
}

.status-pending {
  background-color: #fef3c7;
  color: #92400e;
}

.status-submitted {
  background-color: #d1fae5;
  color: #065f46;
}

.status-in-progress {
  background-color: #dbeafe;
  color: #1e40af;
}
