/* ========================================
   Custom Comparison Table - #tbl-custom
   ======================================== */

#tbl-custom {
  width: 100%;
  border-collapse: collapse;
  font-family: inherit;
  font-size: 14px;
}

/* Header row */
#tbl-custom thead tr {
  border-bottom: 2px solid #e0e0e0;
}

#tbl-custom th {
  padding: 16px 12px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  color: #1a1a1a;
  background: transparent;
}

#tbl-custom th.col-property {
  text-align: left;
  width: 28%;
}

#tbl-custom th.col-novano {
  background-color: #5B7699;
  color: #ffffff;
  width: 16%;
}

/* Body rows */
#tbl-custom tbody tr {
  border-bottom: 1px solid #e8e8e8;
}

#tbl-custom tbody tr:last-child {
  border-bottom: none;
}

#tbl-custom td {
  padding: 14px 12px;
  text-align: center;
  vertical-align: middle;
  color: #333;
  font-size: 13px;
}

#tbl-custom td:first-child {
  text-align: left;
  color: #444;
  font-size: 13px;
}

/* NOVANO column data cells */
#tbl-custom td.novano-cell {
  background-color: #5B7699;
  text-align: center;
}

/* Icon base styles */
.tbl-check,
.tbl-cross {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  vertical-align: middle;
}

/* Green checkmark */
.tbl-check svg path {
  stroke: #3aaa35;
}

/* White checkmark (Novano column) */
.tbl-check--white svg path {
  stroke: #ffffff;
}

/* Red cross */
.tbl-cross svg path {
  stroke: #e02020;
}

/* Note text e.g. (minimal), (high) */
.tbl-note {
  font-size: 11px;
  color: #666;
  white-space: nowrap;
}

.tbl-note--white {
  color: rgba(255, 255, 255, 0.85);
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 768px) {
  #tbl-custom {
    font-size: 12px;
  }

  #tbl-custom th,
  #tbl-custom td {
    padding: 10px 8px;
  }

  #tbl-custom th {
    font-size: 11px;
  }

  .tbl-note {
    display: block;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  #tbl-custom th,
  #tbl-custom td {
    padding: 8px 5px;
    font-size: 11px;
  }

  #tbl-custom th {
    font-size: 10px;
    letter-spacing: 0;
  }

  #tbl-custom td:first-child {
    font-size: 11px;
  }

  .tbl-check svg,
  .tbl-cross svg {
    width: 14px;
    height: 14px;
  }

  .tbl-note {
    font-size: 9px;
  }
}
