ul {
  padding: 0 !important;
  margin: 0 !important;
}

.course-info-list li {
  margin-bottom: 8px;
  font-size: 18px;
}

.smester-name {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.course-title {
  font-size: 32px;
  line-height: 38px;
  font-weight: 600;
}

.course-details {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.course-bread {
  background: #002e600f;
  padding: 8px 0 40px 0;
  text-align: center;
  margin-bottom: 30px;
}

.single-course-image {
  width: 60%;
}

.single-course-image img {
  height: 448px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.course-info {
  width: 40%;
}

.course-info-box {
  border: 1px solid #ddd;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #002e600f;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.single-course-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.single-course-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

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

.course-info-list li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  text-align: center;
  line-height: 10px;
  color: white;
  background: var(--primary-color);
  border-radius: 50%;
  margin-right: 12px;
}

.course-content {
  padding: 20px;
  border: 1px solid #ddd;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 26px;
  text-align: justify;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.course-block {
  margin-bottom: 30px;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.course-col button {
  border-radius: var(--border-radius) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.course-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
}

.sem-toggle-morning,
.sem-toggle-evening {
  background-color: #002e600f;
  color: #000;
  padding: 10px;
  border: 1px solid #ddd;
  width: 100%;
  cursor: pointer;
  font-size: 16px;
  outline: none;
}

.sem-toggle-morning.active,
.sem-toggle-evening.active {
  background-color: #002e60;
  font-weight: bold;
  border-color: #002e60;
  color: #fff;
}

.sem-toggle-morning.active:hover,
.sem-toggle-evening.active:hover {
  background-color: #002e60;
  color: #fff;
}

.course-col.course-info-list {
  padding: 20px !important;
  border: 1px solid #ddd;
  background-color: #002e600f;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
}

.course-col {
  flex: 1;
  padding: 10px;
}

.left-col {
  text-align: left;
}

.right-col {
  text-align: right;
}

.course-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 768px) {
  .course-row {
    display: block;
  }
  .course-col {
    padding: 16px;
  }
}
