/* Table Responsive Container */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin-top: 60px;
}

.table-wrapper {
  max-width: 900px;
  margin: 0 auto;
   margin-top: 60px;
  overflow: hidden;
  border-radius: 20px;
  background: white;
  border: 2px solid #CFDEF0;
}

/* Comparison Table */
  .table-wrapper table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border: none;
   
    border-color: unset!important;
    border-style: unset!important;
}

/* Table Header */
table thead tr {
  background: transparent;
}

table th {
  padding: 15px 20px;
  
  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #464860;
  border-right: 2px solid #CFDEF0;
  border-bottom: 2px solid #CFDEF0;
  background: white;
}

table th:first-child {
  border-top-left-radius: 20px;
  background: linear-gradient(180deg, #F8FCFF 0%, #F5F5FF 100%);
}

table th:last-child {
  border-right: none;
  border-top-right-radius: 20px;
}

table th:first-child {
  text-align: center;
  padding-left: 20px;
  background: linear-gradient(180deg, #F8FCFF 0%, #F5F5FF 100%);
}

/* Table Body */
table tbody tr {
  background: transparent;
}

table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 20px;
}

table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 20px;
}

table tbody td {
  padding: 12px 20px;
  
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  /* text-align: center; */
  vertical-align: middle;
  color: #60738A;
  border-right: 2px solid #CFDEF0;
  border-bottom: 2px solid #CFDEF0;
  background: white;
}

table tbody td:last-child {
  border-right: none;
}

table tbody tr:last-child td {
  border-bottom: none;
}

table tbody td:first-child {
  /* background: linear-gradient(180deg, #F8FCFF 0%, #F5F5FF 100%);
  text-align: center;
  padding: 15px 20px;
  
  font-weight: 600;
  font-style: Medium;
  font-size: 14px;
  line-height: 100%;
  color: #464860;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px; */
}

.feature-icon {
  font-size: 18px;
  display: inline-block;
}

.feature-text {
  display: inline-block;
}

/* Comparison Footer */
.comparison-footer {
  margin-top: 40px;
  text-align: center;
}

.comparison-footer p {
  
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #5F728B;
}

/* Responsive Design */
@media (max-width: 768px) {
  .table-wrapper {
           max-width: 590px;
        border-radius: 12px;
        margin-top: 40px;
        /* width: 900px; */
        overflow: scroll;
        white-space: nowrap;
  }

  table th,
  table tbody td {
    padding: 12px 10px;
    font-size: 12px;
  }

  table th:first-child,
  table tbody td:first-child {
    padding-left: 15px;
    font-size: 12px;
  }

  .feature-icon {
    font-size: 16px;
  }

  .comparison-footer p {
    font-size: 13px;
    padding: 0 20px;
  }
  table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 9px;
}
table th:first-child {
    border-top-left-radius: 9px;
}
}

@media (max-width: 575px) {
  .table-responsive {
    margin-top: 40px;
  }

  table th,
  table tbody td {
    padding: 10px 8px;
    font-size: 11px;
  }

  table th:first-child,
  table tbody td:first-child {
    padding-left: 12px;
    font-size: 11px;
    gap: 6px;
  }

  .feature-icon {
    font-size: 14px;
  }

  .comparison-footer {
    margin-top: 30px;
  }

  .comparison-footer p {
    font-size: 12px;
  }
}
