/* Wrapper width rule */
.price-module-wrapper{box-sizing:border-box;width:100%;margin:0 auto;}
@media (min-width:768px){.price-module-wrapper{width:80%;}}

/* White boxes */
.pm-white-box{background:#fff;border-radius:14px;box-shadow:0 6px 22px rgba(0,0,0,.07);padding:16px 18px;margin:20px 0;}
.pm-title{font-size:1.55rem;font-weight:800;text-align:center;margin:2px 0 4px;}
.pm-subtitle{font-size:.9rem;color:#6b7280;text-align:center;margin:0 0 6px;}
.pm-section-title{font-size:1.15rem;font-weight:700;margin:0 0 8px;color:#111827;text-align:center;}
.pm-note{font-size:.9rem;color:#374151;margin:8px 0 12px;line-height:1.4;}
.pm-note b{font-weight:700;}
.pm-list{margin:6px 0 12px 18px;padding:0;}
.pm-list li{margin:3px 0;}

/* Table container: confines overflow to box (no page break) */
.pm-table-wrap{
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  border-radius:14px;
  border:1px solid #d7e7f7; /* light blue border */
  background:#f7fbff;       /* faint blue background around table */
}
.pm-table{
  width:100%;
  min-width:720px;
  border-collapse:separate;
  border-spacing:0;
  font-size:.95rem;
  background:#ffffff;
  border-radius:14px;
  overflow:hidden;
}

/* Cells */
.pm-table th,.pm-table td{
  padding:10px 10px;
  border-bottom:1px solid #eef2f7;
  vertical-align:top;
  white-space:normal;
  word-break:break-word;
  overflow-wrap:anywhere;
}

/* Header coloring similar to screenshot */
.pm-table thead th{
  position:sticky; top:0;
  background:#eaf3ff;      /* soft light blue */
  color:#0f172a;
  font-weight:700;
  border-bottom:2px solid #cfe3f7;
  text-align:center;        /* center table titles */
}

/* Left description column look */
.pm-table .desc{font-weight:700;color:#111827; text-align:left;}
.pm-table .sub{font-size:.85em;color:#6b7280;font-weight:500;}
.pm-table tbody td:first-child{border-right:1px dotted #d7dee6;}

/* Center numeric columns (2–4) */
.pm-table td:nth-child(2),
.pm-table td:nth-child(3),
.pm-table td:nth-child(4){ text-align:center; }

/* Zebra rows for readability */
.pm-table tbody tr:nth-child(odd){background:#fcfdff;}

/* Round thead & table corners more visibly */
.pm-table thead th:first-child{border-top-left-radius:14px;}
.pm-table thead th:last-child{border-top-right-radius:14px;}
.pm-table tbody tr:last-child td:first-child{border-bottom-left-radius:14px;}
.pm-table tbody tr:last-child td:last-child{border-bottom-right-radius:14px;}

/* Footnotes */
.pm-footnotes{font-size:.8rem;color:#6b7280;margin-top:6px;line-height:1.3;}
.pm-footnotes p{margin:.35rem 0;}

/* Tighten spacing on very small screens */
@media (max-width:420px){
  .pm-table{min-width:640px;}
  .pm-white-box{padding:12px;}
  .pm-title{font-size:1.35rem;}
}
