
/* CARD */
.course-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* HEADER */
.section-header {
  margin-bottom: 20px;
}

.section-header h3 {
  color: var(--primary-blue);
  font-weight: 700;
  position: relative;
  padding-left: 15px;
  text-align:center;
}



/* TABLE */
.custom-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
}

/* HEADER */
.custom-table thead th {
  background: var(--primary-blue);
  color: #fff;
  padding: 14px;
  font-size: 14px;
  text-transform: uppercase;
  border: none;
}

/* BODY */
.custom-table tbody tr {
  transition: 0.2s;
}

.custom-table tbody tr:nth-child(even) {
  background: #f9fafc;
}

.custom-table tbody tr:hover {
  background: rgba(38, 52, 137, 0.08);
}

/* CELLS */
.custom-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  color: var(--text-black);
}

/* FIRST COLUMN STYLE */
.custom-table td:first-child {
  font-weight: 600;
  color: var(--primary-blue);
  width: 35%;
}

/* RESPONSIVE */
.table-responsive {
  overflow-x: auto;
}

@media (max-width: 768px) {
  .course-card {
    padding: 20px;
  }

  .custom-table td,
  .custom-table th {
    font-size: 13px;
    padding: 10px;
  }
}