.profile-course-detail-wrapper {
  margin: 0;
  padding: 0;
  min-height: 500px;
  padding-bottom: 2rem;
}

.gradient-text {
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.breadcrumb {
  background: white;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  margin-bottom: 1.5rem;
}

.breadcrumb-item a {
  color: #667eea;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #2A3B4C;
  font-weight: 500;
  font-size: 0.9rem;
}

.session-icon {
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.sticky-sidebar {
  position: sticky;
  top: 100px;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.list-group-item {
  transition: all 0.3s ease;
}

.list-group-item:hover {
  transform: translateX(3px);
}

/* Ensure proper spacing */
.row {
  margin-bottom: 0;
}

.col-lg-8,
.col-lg-4 {
  margin-bottom: 0;
}

/* Fix for sidebar on mobile */
@media (max-width: 992px) {
  .sticky-sidebar {
    position: static;
    margin-top: 2rem;
  }
  
  .profile-course-detail-wrapper {
    padding-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .breadcrumb {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  
  .display-5 {
    font-size: 1.75rem;
  }
  
  .course-features .d-flex {
    font-size: 0.85rem;
  }
}