/* ==============================================
   SERVICE COMPARISON TABLE
   ============================================== */
.service-comparison {
  width: 100%;
  border-collapse: collapse;
}
.service-comparison th,
.service-comparison td {
  border-bottom: 1px solid #dee2e6;
  text-align: center;
  vertical-align: middle;
  padding: .75rem;
}
.service-comparison thead th {
  background: #f8f9fa;
  font-weight: 600;
}
.service-comparison tbody th {
  text-align: left;
  background: #fff;
  font-weight: 600;
  width: 20%;
}

/* Unicode check in a green circle */
.service-comparison td.included {
  background-color: #e3f2fd; /* light blue */
}
.service-comparison td.included::before {
  content: "\2714";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: #28a745;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
  font-size: 16px;
}

/* Extra styling */
.service-comparison td.extra {
  background-color: #fff3e0; /* light orange */
  color: #ef6c00;
  font-weight: 600;
}

/* Not available styling */
.service-comparison td.not-available {
  background-color: #f8f9fa;
  color: #adb5bd;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .service-comparison th,
  .service-comparison td {
    padding: .5rem;
    font-size: .9rem;
  }
}
