/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 31 2025 | 14:18:41 */
/* I will add here custom html table css code here - START*/

    /* 1) Wrapper enables horizontal scroll on small screens */
    .table-responsive {
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch; /* smooth swipe on iOS */
      margin: 1em 0;
		margin-left: 20px;
    margin-right: 20px;
    }
    /* 2) Base table styling */
    .comparison-table {
      border-collapse: collapse;
      width: 100%;
      min-width: 700px;  /* adjust to your total columns width */
    }
    .comparison-table th,
    .comparison-table td {
      border: 1px solid #ccc;
      padding: 8px 12px;
      vertical-align: top;
      white-space: nowrap; /* prevent wrapping so horizontal scroll shows */
    }
    .comparison-table th {
      background: #0008AA;
      color: white;
      font-weight: bold;
      text-align: left;
    }
    /* subheading rows */
    .comparison-table tr.subheading th {
      background: #ececec;
      color: black;
      font-size: 1em;
      padding: 12px;
    }
/* I will add here custom html table css code here - END*/

