/* simple-interest.css - Dedicated Styles for Simple Interest Calculator Clone */

:root {
  --si-blue-dark: #244a75;
  --si-blue-header: #0844a4;
  --si-blue-sidebar: #2b5b88;
  --si-green-header: #5c8b29;
  --si-green-btn: #5c8b29;
  --si-green-hover: #4c771f;
  --si-grey-clear: #9e9e9e;
  --si-grey-clear-hover: #888888;
  --si-border: #7f9db9;
  --si-border-card: #cccccc;
  --si-bg-form: #eeeeee;
  --si-text-dark: #000000;
  --si-text-muted: #555555;
  --si-link: #0844a4;
  --si-chart-principal: #2196f3;
  --si-chart-interest: #8bc34a;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--si-text-dark);
  background-color: #ffffff;
  line-height: 1.4;
  font-size: 13px;
}

.si-page-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 10px 15px 40px;
  box-sizing: border-box;
}

/* Breadcrumbs & Top Utilities */
.si-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.si-breadcrumbs {
  font-size: 12px;
  color: #666666;
}

.si-breadcrumbs a {
  color: var(--si-link);
  text-decoration: underline;
}

.si-breadcrumbs a:hover {
  color: #052c6e;
}

.si-breadcrumbs .sep {
  margin: 0 4px;
  color: #777777;
}

.si-breadcrumbs .current {
  color: var(--si-link);
  text-decoration: underline;
}

.si-print-link {
  color: var(--si-link);
  font-size: 12.5px;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
}

.si-print-link:hover {
  color: #052c6e;
}

/* Page Title & Intro */
.si-page-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--si-blue-header);
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.si-intro-text {
  font-size: 13px;
  color: #000000;
  line-height: 1.45;
  margin: 0 0 16px 0;
}

.si-intro-text a {
  color: var(--si-link);
  text-decoration: underline;
}

/* Main Grid Layout */
.si-layout-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 20px;
  align-items: start;
}

@media (max-width: 900px) {
  .si-layout-grid {
    grid-template-columns: 1fr;
  }
}

.si-main-col {
  min-width: 0;
}

/* Top Section: Calculator Form + Results side-by-side */
.si-calc-results-row {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 18px;
  margin-bottom: 20px;
  align-items: start;
}

@media (max-width: 760px) {
  .si-calc-results-row {
    grid-template-columns: 1fr;
  }
}

/* 1. Calculator Form Box with Top Tabs (Exact match Image 2) */
.si-calc-box-wrap {
  display: flex;
  flex-direction: column;
}

/* Four Tabs on top of the form */
.si-form-tabs {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 2px;
}

.si-tab-item {
  background-color: var(--si-blue-dark);
  color: #ffffff;
  border: 1px solid #1f3f64;
  border-bottom: none;
  font-size: 13px;
  font-weight: normal;
  padding: 4px 10px;
  cursor: pointer;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  user-select: none;
  text-align: center;
  flex: 1;
}

.si-tab-item:hover {
  background-color: #1a385a;
}

.si-tab-item.active {
  background-color: var(--si-bg-form);
  color: #000000;
  font-weight: bold;
  border-color: var(--si-border-card);
  border-bottom: 1px solid var(--si-bg-form);
  margin-bottom: -1px;
  z-index: 2;
}

.si-form-card {
  background: var(--si-bg-form);
  border: 1px solid var(--si-border-card);
  padding: 10px 10px 12px;
  box-sizing: border-box;
  z-index: 1;
}

.si-form-table {
  width: 100%;
  border-collapse: collapse;
}

.si-form-table td {
  padding: 4px 2px;
  vertical-align: middle;
  font-size: 13px;
}

.si-form-table .si-label-col {
  color: #000000;
  white-space: nowrap;
  width: 40%;
  font-size: 13px;
}

.si-form-table .si-input-col {
  width: 60%;
}

.si-input-group {
  display: flex;
  align-items: center;
  border: 1px solid var(--si-border);
  background: #ffffff;
  height: 23px;
  box-sizing: border-box;
  padding: 0 3px;
  width: 100%;
  box-shadow: inset 1px 1px 1px rgba(0,0,0,0.08);
}

.si-input-group:focus-within {
  border-color: #000000;
}

.si-input-group .si-prefix,
.si-input-group .si-suffix {
  font-size: 12px;
  color: #000000;
  user-select: none;
  white-space: nowrap;
}

.si-input-group .si-prefix {
  margin-right: 2px;
}

.si-input-group .si-suffix {
  margin-left: 3px;
}

.si-input-group input {
  border: none;
  background: transparent;
  width: 100%;
  font-size: 13px;
  color: #000000;
  outline: none;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.si-inline-controls {
  display: flex;
  align-items: center;
  gap: 4px;
}

.si-select-box {
  border: 1px solid var(--si-border);
  background: #ffffff;
  height: 23px;
  font-size: 12.5px;
  color: #000000;
  box-sizing: border-box;
  padding: 0 2px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Button Row */
.si-btn-row {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  padding-top: 2px;
}

.si-btn-calculate {
  background-color: var(--si-green-btn);
  color: #ffffff;
  border: 1px solid #3f6815;
  border-radius: 3px;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1.2;
}

.si-btn-calculate:hover {
  background-color: var(--si-green-hover);
}

.si-play-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
}

.si-play-arrow {
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid var(--si-green-btn);
  margin-left: 1px;
}

.si-btn-clear {
  background-color: var(--si-grey-clear);
  color: #ffffff;
  border: 1px solid #888888;
  border-radius: 3px;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1.2;
}

.si-btn-clear:hover {
  background-color: var(--si-grey-clear-hover);
}

/* 2. Results Area (Flat on white page, exact match Image 2) */
.si-results-card {
  background: transparent;
  border: none;
  box-sizing: border-box;
}

.si-results-header {
  background-color: var(--si-green-header);
  color: #ffffff;
  padding: 4px 8px;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 26px;
  box-sizing: border-box;
}

.si-save-icon-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 0;
  font-size: 8px;
  line-height: 1;
}

.si-save-icon-btn:hover {
  opacity: 0.85;
}

.si-save-icon-btn svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.si-results-body {
  padding: 8px 4px 4px;
}

.si-results-summary-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.si-res-label {
  font-size: 15px;
  font-weight: bold;
  color: #000000;
}

.si-res-value {
  font-size: 15px;
  font-weight: bold;
  color: #000000;
}

.si-calc-steps-box {
  margin-top: 12px;
  font-size: 12.5px;
  color: #000000;
  line-height: 1.5;
}

.si-calc-steps-title {
  font-size: 13px;
  font-weight: normal;
  color: #000000;
  margin-bottom: 4px;
}

.si-calc-step-line {
  white-space: pre-wrap;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12.5px;
}

/* Row 2: Visualizations side by side (Accumulation Graph + Breakdown) */
.si-visuals-row {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 20px;
  margin-bottom: 24px;
  align-items: start;
}

@media (max-width: 650px) {
  .si-visuals-row {
    grid-template-columns: 1fr;
  }
}

.si-graph-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.si-graph-title {
  font-size: 15px;
  font-weight: bold;
  color: #000000;
  margin: 0 0 6px 0;
  text-align: center;
}

.si-graph-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
  font-size: 12px;
}

.si-graph-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #000000;
}

.si-legend-bar-sample {
  width: 14px;
  height: 4px;
  display: inline-block;
}

.si-legend-bar-sample.principal { background-color: var(--si-chart-principal); }
.si-legend-bar-sample.interest { background-color: var(--si-chart-interest); }

.si-bar-chart-wrap {
  width: 100%;
  max-width: 440px;
  height: 220px;
}

/* Breakdown Donut Chart */
.si-breakdown-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.si-breakdown-title {
  font-size: 15px;
  font-weight: bold;
  color: #000000;
  margin: 0 0 8px 0;
  text-align: center;
}

.si-donut-svg-wrap {
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.si-breakdown-legend {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
}

.si-breakdown-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #000000;
}

.si-legend-box {
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 1px;
}

.si-legend-box.principal { background-color: var(--si-chart-principal); }
.si-legend-box.interest { background-color: var(--si-chart-interest); }

/* Row 3: Schedule Table (Exact match Image 2) */
.si-schedule-section {
  margin-top: 10px;
}

.si-schedule-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--si-blue-header);
  margin: 0 0 8px 0;
}

.si-table-container {
  overflow-x: auto;
  border: 1px solid #7f9db9;
  max-width: 320px;
}

.si-sched-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.si-sched-table th {
  background-color: var(--si-blue-dark);
  color: #ffffff;
  padding: 4px 8px;
  text-align: right;
  font-weight: bold;
  border: 1px solid #1f3f64;
  white-space: nowrap;
}

.si-sched-table th:first-child {
  text-align: center;
  width: 44px;
}

.si-sched-table td {
  padding: 3px 8px;
  border: 1px solid #c0c0c0;
  text-align: right;
  color: #000000;
  white-space: nowrap;
}

.si-sched-table td:first-child {
  text-align: center;
  font-weight: bold;
}

.si-sched-table tr:nth-child(even) {
  background-color: #ffffff;
}

.si-sched-table tr:hover {
  background-color: #f6f8fa;
}

/* 4. Sidebar (EXACT CLONE OF REFERENCE IMAGE 2) */
.si-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 260px;
}

.si-search-container {
  display: flex;
  position: relative;
  align-items: center;
}

.si-search-input {
  width: 195px;
  height: 26px;
  border: 1px solid var(--si-blue-sidebar);
  padding: 0 6px;
  font-size: 13px;
  box-sizing: border-box;
  background: #ffffff;
  box-shadow: inset 1px 1px 2px rgba(0,0,0,0.18);
  font-family: Arial, Helvetica, sans-serif;
  color: #000000;
}

.si-search-input:focus {
  outline: 1px solid var(--si-blue-sidebar);
}

.si-search-btn {
  background: var(--si-blue-sidebar);
  color: #ffffff;
  border: 1px solid #1a3d60;
  font-size: 13px;
  font-weight: bold;
  padding: 0 10px;
  height: 26px;
  cursor: pointer;
  margin-left: 3px;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}

.si-search-btn:hover {
  background: #20466b;
}

.si-search-dropdown {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #7f9db9;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  max-height: 260px;
  overflow-y: auto;
  z-index: 100;
  display: none;
}

.si-search-item {
  padding: 6px 10px;
  font-size: 12px;
  color: #000000;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f1f5f9;
}

.si-search-item:hover {
  background-color: #f1f5f9;
  color: var(--si-blue-header);
}

.si-search-item .item-cat {
  font-size: 10px;
  color: #666666;
  background: #e2e8f0;
  padding: 1px 4px;
}

/* Sidebar Financial Calculators Card (Exact match Image 2) */
.si-side-card {
  border: 1px solid var(--si-blue-sidebar);
  background: #ffffff;
  box-sizing: border-box;
}

.si-side-card-header {
  background-color: var(--si-blue-sidebar);
  color: #ffffff;
  padding: 4px 8px;
  font-size: 13.5px;
  font-weight: bold;
  line-height: 1.3;
}

.si-side-card-body {
  padding: 8px 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px 6px;
}

.si-side-link {
  font-size: 11.5px;
  color: var(--si-link);
  text-decoration: underline;
  line-height: 1.45;
  white-space: nowrap;
}

.si-side-link:hover {
  color: #052c6e;
}

.si-side-link.wrap-lines {
  white-space: normal;
  line-height: 1.25;
}

.si-side-card-footer {
  padding: 4px 6px;
  border-top: 1px solid #c0c0c0;
  background: #dcdcdc;
  font-size: 10.5px;
  text-align: center;
  color: #666666;
  white-space: nowrap;
}

.si-side-card-footer a {
  color: var(--si-link);
  text-decoration: underline;
}

.si-side-card-footer .active-cat {
  color: #333333;
  text-decoration: underline;
}

/* 5. Fraction Arithmetic & Visualizations (Core Requirement 1 & 5) */
.si-fraction-card {
  margin-top: 36px;
  border-top: 1px dashed #cccccc;
  padding-top: 20px;
}

.si-fraction-title {
  font-size: 16px;
  font-weight: bold;
  color: var(--si-blue-header);
  margin: 0 0 6px 0;
}

.si-fraction-desc {
  font-size: 12.5px;
  color: #444444;
  margin: 0 0 14px 0;
}

.si-fraction-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 14px;
}

@media (max-width: 680px) {
  .si-fraction-grid {
    grid-template-columns: 1fr;
  }
}

.si-fraction-box {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  padding: 10px;
}

.si-fraction-inputs-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.si-frac-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50px;
}

.si-frac-cell input {
  width: 44px;
  height: 24px;
  text-align: center;
  border: 1px solid #7f9db9;
  font-size: 13px;
  font-weight: bold;
  background: #ffffff;
}

.si-frac-cell .si-frac-bar {
  width: 44px;
  height: 2px;
  background-color: #333333;
  margin: 3px 0;
}

.si-frac-op-select {
  height: 26px;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #7f9db9;
  background: #ffffff;
  padding: 0 2px;
}

.si-frac-actions {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 8px;
}

.si-frac-btn {
  background: var(--si-blue-sidebar);
  color: #ffffff;
  border: none;
  border-radius: 2px;
  padding: 4px 10px;
  font-size: 11.5px;
  font-weight: bold;
  cursor: pointer;
}

.si-frac-btn-clear {
  background: #94a3b8;
  color: #ffffff;
  border: none;
  border-radius: 2px;
  padding: 4px 10px;
  font-size: 11.5px;
  font-weight: bold;
  cursor: pointer;
}

.si-fraction-result-box {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.si-fraction-charts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .si-fraction-charts-grid {
    grid-template-columns: 1fr;
  }
}

.si-chart-card-mini {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 6px 8px;
  text-align: center;
}

.si-chart-card-mini h4 {
  margin: 0 0 4px 0;
  font-size: 11px;
  font-weight: bold;
  color: #475569;
}

/* 6. Instant Calculation Tool Modal (EXACT CLONE OF REFERENCE IMAGE 1) */
.si-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.si-modal-backdrop.open {
  display: flex;
}

.si-instant-modal-box {
  background: #ffffff;
  border: 1px solid #7f9db9;
  border-radius: 2px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  width: 90%;
  max-width: 470px;
  overflow: hidden;
}

.si-instant-modal-header {
  background-color: var(--si-blue-dark);
  color: #ffffff;
  padding: 7px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.si-instant-modal-header h3 {
  margin: 0;
  font-size: 13.5px;
  font-weight: bold;
}

.si-instant-close-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}

.si-instant-modal-body {
  padding: 14px 16px;
}

.si-instant-subtitle {
  font-size: 12.5px;
  color: #444444;
  margin: 0 0 12px 0;
}

.si-instant-field {
  margin-bottom: 10px;
}

.si-instant-field label {
  display: block;
  font-size: 12.5px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 4px;
}

.si-instant-input {
  width: 100%;
  height: 26px;
  border: 1px solid var(--si-blue-sidebar);
  border-radius: 3px;
  padding: 0 6px;
  font-size: 13px;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  color: #000000;
}

.si-instant-modal-btn-compute {
  background-color: var(--si-blue-dark);
  color: #ffffff;
  border: none;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 3px;
  margin-top: 6px;
}

.si-instant-modal-btn-compute:hover {
  background-color: #1a385a;
}

.si-saved-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 280px;
  overflow-y: auto;
}

.si-saved-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 12.5px;
}

.si-saved-item:hover {
  background-color: #f8fafc;
}

.si-saved-actions {
  display: flex;
  gap: 6px;
}

.si-btn-action-sm {
  border: 1px solid #cbd5e1;
  background: #ffffff;
  border-radius: 2px;
  padding: 2px 6px;
  font-size: 11px;
  cursor: pointer;
}

.si-btn-action-sm.danger {
  color: #dc2626;
  border-color: #fca5a5;
}

/* 7. Comprehensive SEO/AEO/GEO Content Article */
.si-seo-article {
  margin-top: 36px;
  border-top: 1px dashed #cccccc;
  padding-top: 20px;
  font-size: 13px;
  color: #333333;
  line-height: 1.55;
}

.si-seo-article h2 {
  font-size: 18px;
  color: var(--si-blue-header);
  margin: 18px 0 8px 0;
}

.si-seo-article h3 {
  font-size: 14.5px;
  color: var(--si-blue-dark);
  margin: 14px 0 6px 0;
}

.si-seo-article p {
  margin: 0 0 10px 0;
}

.si-seo-article ul, .si-seo-article ol {
  margin: 0 0 12px 20px;
  padding: 0;
}

.si-seo-article li {
  margin-bottom: 4px;
}

.si-formula-box {
  background: #f1f5f9;
  border-left: 3px solid var(--si-blue-sidebar);
  padding: 8px 12px;
  margin: 10px 0;
  font-family: monospace;
  font-size: 13px;
  color: #0f172a;
}

/* 8. Print & Export Statement Dialog Modal */
.si-dialog-modal {
  background: #ffffff;
  border: 1px solid #7f9db9;
  border-radius: 2px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  width: 92%;
  max-width: 680px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.si-dialog-header {
  background-color: var(--si-blue-dark);
  color: #ffffff;
  padding: 8px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.si-dialog-body {
  padding: 16px;
  overflow-y: auto;
}

.si-print-modal-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.si-top-btn {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
  border-radius: 3px;
  color: #1e293b;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: Arial, Helvetica, sans-serif;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.si-top-btn:hover {
  background: #e2e8f0;
  border-color: #94a3b8;
}

.si-top-btn.primary {
  background: #244a75;
  color: #ffffff;
  border-color: #1f3f64;
  font-weight: bold;
}

.si-top-btn.primary:hover {
  background: #1b3858;
}

/* Print Overrides */
@media print {
  body {
    background: #ffffff !important;
    font-size: 10pt;
    color: #000000 !important;
  }
  .site-header,
  .si-sidebar,
  .si-top-bar,
  .si-print-link,
  .si-btn-row,
  .si-fraction-card,
  .si-seo-article,
  #inst_modal,
  #saved_modal,
  .si-print-modal-actions,
  .si-dialog-header,
  .si-instant-close-btn {
    display: none !important;
  }

  /* When print modal is open during print, render the print sheet full page */
  #print_modal.open {
    display: block !important;
    position: static !important;
    background: transparent !important;
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
  }
  #print_modal.open .si-dialog-modal {
    border: none !important;
    box-shadow: none !important;
    max-width: 100% !important;
    width: 100% !important;
    max-height: none !important;
    overflow: visible !important;
  }
  #print_modal.open .si-dialog-body {
    padding: 0 !important;
    overflow: visible !important;
  }

  .si-page-container {
    max-width: 100% !important;
    padding: 0 !important;
  }
  .si-layout-grid {
    grid-template-columns: 1fr !important;
  }
  .si-calc-results-row {
    grid-template-columns: 1fr 1fr !important;
  }
  .si-table-container {
    max-width: 100% !important;
    overflow: visible !important;
  }

  .site-footer {
    display: block !important;
    margin-top: 24px !important;
    padding: 16px 0 !important;
    border-top: 1px solid #cccccc !important;
    background: transparent !important;
    page-break-inside: avoid !important;
  }
}
