.learning-paths-table {
  margin-top: 20px;
  background-color: white;
}

.learning-paths-table th {
  background-color: #f5f5f5;
  padding: 15px;
}

.learning-paths-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #ddd;
}

.learning-paths-table tr:hover {
  background-color: #f9f9f9;
  cursor: pointer;
}

.table-container {
  margin-top: 20px;
  overflow-x: auto;
}

#save-sequence {
  margin: 2rem 0;
}

.course-row:hover {
  background-color: #f9f9f9;
}

.course-row.selected {
  background-color: #ecf0f0;
}

.course-info {
  display: flex;
  align-items: center;
}

.course-logo {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 12px;
}

.batch-select-container {
  display: none;
  margin-top: 8px;
}

.batch-select-container.active {
  display: block;
}

.batch-select {
  padding: 5px;
  width: 100%;
  max-width: 200px;
  border: 1px solid #ddd;
  background-color: white;
}

.batch-loading {
  margin-top: 5px;
  font-size: 14px;
  color: #757575;
}

.batch-error {
  color: #f44336;
  margin-top: 5px;
  font-size: 14px;
}

.save-button-container {
  margin-top: 20px;
  text-align: right;
}

.btn:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

.locked-course {
  position: relative;
  opacity: 0.7;
  filter: grayscale(50%);
}

.locked-course::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1;
}

.locked-img {
  filter: brightness(0.8);
}

.locked-infobx {
  position: relative;
  z-index: 2;
}

/*# sourceMappingURL=learningpath.css.map */
