/* Student Journey Theme - Matching University Pages */

.student-journey-page {
  min-height: 80vh;
  padding-top: 60px;
  padding-bottom: 60px;
}

.student-journey-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.sj-page-header {
  text-align: center;
  margin-bottom: 40px;
}

.sj-page-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.sj-page-subtitle {
  font-family: 'Questrial', sans-serif;
  font-size: 18px;
  color: #6b7280;
}

.sj-form-card {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.sj-form-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 8px;
  display: block;
}

.sj-form-select,
.sj-form-input {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  padding: 14px 18px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
}

.sj-form-select:focus,
.sj-form-input:focus {
  border-color: #FF6742;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 103, 66, 0.1);
}

.sj-form-select option:disabled {
  color: #d1d5db !important;
  background-color: #f9fafb !important;
  opacity: 0.5 !important;
}

.sj-btn-primary {
  background: linear-gradient(135deg, #FF6742 0%, #ff8566 100%);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.sj-btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 103, 66, 0.3);
}

.sj-btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.sj-btn-secondary {
  background: white;
  color: #4a5568;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 30px;
  border: 2px solid #e5e7eb;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.sj-btn-secondary:hover {
  border-color: #cbd5e0;
  background: #f7fafc;
}

.sj-error-message {
  color: #e53e3e;
  font-size: 14px;
  margin-top: 6px;
  font-family: 'DM Sans', sans-serif;
}

.sj-info-box {
  background: linear-gradient(135deg, #ebf4ff 0%, #f0f7ff 100%);
  border-left: 4px solid #3b82f6;
  padding: 20px;
  border-radius: 8px;
}

.sj-section-divider {
  border-top: 2px solid #f1f5f9;
  margin: 32px 0;
}

.sj-program-details {
  background: #f8fafc;
  border-radius: 8px;
  padding: 20px;
  margin-top: 16px;
}

.sj-detail-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 12px 0;
}

.sj-detail-item:last-child {
  border-bottom: none;
}

.sj-detail-label {
  font-size: 14px;
  color: #6b7280;
  font-family: 'DM Sans', sans-serif;
}

.sj-detail-value {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  font-family: 'DM Sans', sans-serif;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .sj-form-card {
    padding: 24px;
  }

  .sj-page-title {
    font-size: 28px;
  }

  .sj-page-subtitle {
    font-size: 16px;
  }
}
