

/* CARD */
.table-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* HEADER TITLE */
.table-header {
  background: var(--primary-blue);
  padding: 20px;
  text-align: center;
}

.table-header h2 {
  color: #fff;
  margin: 0;
  font-weight: 700;
  font-size: 26px;
}

/* TABLE */
.custom-table {
  margin: 0;
  width: 100%;
  border-collapse: collapse;
}

/* HEADER */
.custom-table thead th {
  background: var(--primary-blue) !important;
  color: #fff !important;
  text-align: center;
  padding: 16px;
  font-weight: 600;
  border: none;
}

/* 🔥 2ND COLUMN HEADER COLOR */
.custom-table thead th:nth-child(2) {
  background: var(--accent-red) !important;
}

/* BODY */
.custom-table tbody td {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
  color: #333;
  vertical-align: middle;
}

/* 🔥 2ND COLUMN BODY COLOR */
.custom-table tbody td:nth-child(2) {
  background: #eef1fb; /* light blue */
  font-weight: 600;
  color: var(--primary-blue);
}

/* STRIPED ROWS */
.custom-table tbody tr:nth-child(even) td:not(:nth-child(2)) {
  background: #f7f7f7;
}

/* HOVER EFFECT */
.custom-table tbody tr:hover td:not(:nth-child(2)) {
  background: #eef1fb;
}

/* KEEP 2ND COLUMN FIXED ON HOVER */
.custom-table tbody tr:hover td:nth-child(2) {
  background: #dfe4ff;
}

/* INNER LIST */
.inner-list {
  margin-top: 8px;
  padding-left: 18px;
  text-align: left;
}

.inner-list li {
  font-size: 14px;
  margin-bottom: 4px;
}

.inner-list li::marker {
  color: var(--accent-red);
}

/* MOBILE */
@media (max-width: 768px) {

  .custom-table thead {
    display: table-header-group;
  }

  .custom-table {
    font-size: 14px;
  }

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

}