












/* ===============================
   Feature Table - Layout & Base
================================= */
.feature-table {
  width: 100%;
  max-width: 900px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 20px;
  margin: 20px auto;
  overflow-x: auto;
  font-family: Arial, sans-serif;
}

.feature-table table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  table-layout: fixed; /* ✅ Enforce strict column widths */
}

.feature-table th,
.feature-table td {
  padding: 15px 10px;
  position: relative;
}

/* ===============================
   Headings & First Column
================================= */
.feature-table th {
  font-family: 'Hind', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #333;
}

.feature-table td {
  border-top: 1px solid #eee;
  color: #555;
  font-size: 14px;
}

/* Consistent column widths for all views */
.feature-table th:first-child,
.feature-table td:first-child {
  width: 40%;
  max-width: 40%;
  white-space: normal;
  text-align: left;
}

.feature-table th:nth-child(2),
.feature-table td:nth-child(2),
.feature-table th:nth-child(3),
.feature-table td:nth-child(3),
.feature-table th:nth-child(4),
.feature-table td:nth-child(4) {
  width: 20%;
  max-width: 20%;
  word-wrap: break-word;
  white-space: normal;
  text-align: center;
}

.feature-table td:first-child .feature-text {
  font-weight: bold;
  border-bottom: 1px dashed #aaa;
  cursor: pointer;
}

/* ===============================
   Tooltip Styling
================================= */
.tooltip-container .tooltip-text {
  visibility: hidden;
  width: 220px;
  background-color: #000;
  color: #fff;
  text-align: left;
  border-radius: 10px;
  padding: 12px;
  font-size: 13px;
  line-height: 1.4;

  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(4px, -50%);
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent #000 transparent transparent;
}

.tooltip-container:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* ===============================
   Responsive Tooltip Adjustment
================================= */
@media screen and (max-width: 768px) {
  .tooltip-container .tooltip-text {
    width: 200px;
    left: 100%;
    transform: translate(10px, -50%);
  }

  .tooltip-text::after {
    left: -10px;
    border-color: transparent #000 transparent transparent;
  }
}

/* ===============================
   Icon Alignment and Centering
================================= */
.icon-cell {
  text-align: center !important;
  vertical-align: middle !important;
}

.icon-cell svg {
  width: 24px;
  height: 24px;
}

