/* Mortgage Calculator Page Styles - Pixel-perfect Calculator.net Clone */

.mc-page-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 15px 40px;
  font-family: Arial, Helvetica, sans-serif;
  color: #333333;
}

/* Breadcrumb and Print bar */
.mc-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-bottom: 8px;
}

.mc-breadcrumbs {
  color: #0844a4;
}

.mc-breadcrumbs a {
  color: #0844a4;
  text-decoration: none;
}

.mc-breadcrumbs a:hover {
  text-decoration: underline;
}

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

.mc-breadcrumbs .current {
  color: #333333;
}

.mc-print-link {
  color: #0844a4;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 13px;
  font-family: inherit;
  padding: 0;
}

.mc-print-link:hover {
  color: #002277;
}

/* Main Heading */
.mc-page-title {
  font-size: 26px;
  font-weight: bold;
  color: #003366;
  margin: 0 0 10px 0;
}

/* Blue Instruction Bar */
.mc-instruction-bar {
  background-color: #003366;
  color: #ffffff;
  font-size: 13px;
  font-weight: normal;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  border-radius: 2px;
}

.mc-instruction-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background-color: #ffffff;
  border-radius: 50%;
  color: #003366;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
}

/* Main 3-column / 2-column Grid */
.mc-main-grid {
  display: grid;
  grid-template-columns: 340px 1fr 240px;
  gap: 20px;
  align-items: start;
  margin-bottom: 25px;
}

@media (max-width: 980px) {
  .mc-main-grid {
    grid-template-columns: 340px 1fr;
  }
  .mc-sidebar-col {
    grid-column: 1 / -1;
    margin-top: 20px;
  }
}

@media (max-width: 720px) {
  .mc-main-grid {
    grid-template-columns: 1fr;
  }
}

/* Form Styling (Left Column) */
.mc-form-col {
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  padding: 12px;
  font-size: 13px;
}

.mc-form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
}

.mc-form-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #333333;
  font-weight: normal;
  min-width: 120px;
}

.mc-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #9bb5cf;
  color: #ffffff;
  font-size: 10px;
  font-weight: bold;
  cursor: help;
  user-select: none;
  position: relative;
}

.mc-info-icon:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 20px;
  top: -6px;
  background-color: #2b5a88;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: normal;
  white-space: nowrap;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  pointer-events: none;
}

.mc-form-control {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mc-input {
  border: 1px solid #7f9db9;
  padding: 3px 5px;
  font-size: 13px;
  color: #000000;
  background-color: #ffffff;
  outline: none;
}

.mc-input:focus {
  border-color: #003366;
}

.mc-input-price {
  width: 145px;
}

.mc-input-small {
  width: 55px;
}

.mc-input-medium {
  width: 80px;
}

.mc-select {
  border: 1px solid #7f9db9;
  padding: 2px 4px;
  font-size: 12px;
  background-color: #ffffff;
}

.mc-calc-note {
  font-size: 11px;
  color: #555555;
  margin-left: 4px;
}

/* Checkboxes */
.mc-checkbox-row {
  margin: 10px 0 6px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
  font-size: 13px;
}

.mc-checkbox-row input[type="checkbox"] {
  accent-color: #003366;
  cursor: pointer;
}

.mc-sub-section-title {
  font-size: 12px;
  font-weight: bold;
  color: #222222;
  margin: 8px 0 6px 0;
  text-align: right;
  padding-right: 10px;
}

.mc-toggle-link {
  display: inline-block;
  color: #0844a4;
  font-size: 12px;
  text-decoration: none;
  margin: 6px 0 8px;
  cursor: pointer;
}

.mc-toggle-link:hover {
  text-decoration: underline;
}

.mc-extra-section-title {
  font-size: 12px;
  font-weight: bold;
  color: #222222;
  margin: 8px 0 4px;
}

/* Buttons */
.mc-btn-row {
  display: flex;
  gap: 8px;
  margin: 14px 0 10px;
}

.mc-btn-calculate {
  background: #2e7d32;
  color: #ffffff;
  border: 1px solid #1e5e22;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: bold;
  border-radius: 3px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.mc-btn-calculate:hover {
  background: #256628;
}

.mc-btn-clear {
  background: #999999;
  color: #ffffff;
  border: 1px solid #888888;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: normal;
  border-radius: 3px;
  cursor: pointer;
}

.mc-btn-clear:hover {
  background: #777777;
}

/* Rates Box */
.mc-rates-box {
  background-color: #f7f9fa;
  border: 1px solid #d4dce5;
  padding: 8px;
  font-size: 11.5px;
  margin-top: 10px;
}

.mc-rates-title {
  font-weight: bold;
  color: #333333;
  margin-bottom: 3px;
}

.mc-rates-line {
  color: #000000;
  margin-bottom: 6px;
}

.mc-rates-line a {
  color: #0844a4;
  text-decoration: underline;
}

.mc-rates-actions {
  display: flex;
  gap: 8px;
}

.mc-rates-btn {
  background: #2b5a88;
  color: #ffffff;
  font-size: 11px;
  border: none;
  padding: 3px 8px;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
}

.mc-rates-btn:hover {
  background: #1b4570;
}

/* Center Results Column */
.mc-results-col {
  background-color: #ffffff;
}

.mc-results-header {
  background-color: #2e7d32;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  padding: 6px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 2px 2px 0 0;
}

.mc-save-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 9px;
  line-height: 1;
  padding: 2px 4px;
  border-radius: 2px;
}

.mc-save-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.mc-results-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mc-saved-badge-btn {
  background: #ffffff;
  color: #2e7d32;
  border: 1px solid #ffffff;
  font-size: 11px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 3px;
  cursor: pointer;
}

.mc-saved-badge-btn:hover {
  background: #e8f5e9;
}

.mc-save-btn svg {
  fill: #ffffff;
  margin-bottom: 2px;
}

/* Breakdown Table */
.mc-breakdown-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-bottom: 15px;
}

.mc-breakdown-table th {
  font-weight: bold;
  padding: 5px 8px;
  text-align: right;
  border-bottom: 1px solid #e0e0e0;
}

.mc-breakdown-table th:first-child {
  text-align: left;
}

.mc-breakdown-table td {
  padding: 4px 8px;
  text-align: right;
}

.mc-breakdown-table td:first-child {
  text-align: left;
  color: #222222;
}

.mc-breakdown-table tr:nth-child(even) td {
  background-color: #fcfcfc;
}

.mc-row-total td {
  border-top: 1px solid #bbbbbb;
  border-bottom: 1px solid #bbbbbb;
  font-weight: bold;
  padding: 5px 8px;
}

/* Donut & Legend Wrap */
.mc-chart-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 10px 0 15px;
  padding: 0 5px;
}

.mc-donut-container {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  position: relative;
}

.mc-donut-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.mc-legend-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
}

.mc-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.mc-legend-color {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.mc-legend-blue { background-color: #2b5a88; }
.mc-legend-green { background-color: #4caf50; }
.mc-legend-orange { background-color: #ff9800; }
.mc-legend-red { background-color: #d32f2f; }

/* Loan Summary Table */
.mc-summary-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 8px;
}

.mc-summary-table td {
  padding: 4px 8px;
}

.mc-summary-table td:first-child {
  color: #333333;
}

.mc-summary-table td:last-child {
  text-align: right;
  font-family: inherit;
  background-color: #eef2f5;
  padding-left: 15px;
}

.mc-summary-table tr:nth-child(even) td:last-child {
  background-color: #e5ebf0;
}

/* Biweekly Callout Box */
.mc-biweekly-box {
  background-color: #f0f7f0;
  border: 1px solid #c2e0c2;
  padding: 8px 12px;
  margin-top: 12px;
  font-size: 12px;
  border-radius: 2px;
}

.mc-biweekly-title {
  font-weight: bold;
  color: #2e7d32;
  margin-bottom: 4px;
}

/* Sidebar Column (Right) */
.mc-sidebar-col {
  font-size: 13px;
}

.mc-side-search-form {
  display: flex;
  margin-bottom: 14px;
  position: relative;
}

.mc-side-search-wrap {
  position: relative;
  flex: 1;
  display: flex;
}

.mc-side-search-input {
  width: 100%;
  border: 1px solid #7f9db9;
  padding: 5px 8px;
  font-size: 12px;
  font-family: inherit;
  outline: none;
  background-color: #ffffff;
  color: #333333;
}

.mc-side-search-input:focus {
  border-color: #003366;
  box-shadow: 0 0 3px rgba(0, 51, 102, 0.25);
}

.mc-side-search-btn {
  background-color: #2b5a88;
  color: #ffffff;
  border: 1px solid #1b4570;
  border-left: none;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.15s ease;
}

.mc-side-search-btn:hover {
  background-color: #1b4570;
}

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

.mc-search-dropdown.active {
  display: block;
}

.mc-search-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 9px;
  font-size: 12px;
  color: #222222;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  transition: background-color 0.1s ease;
}

.mc-search-item:last-child {
  border-bottom: none;
}

.mc-search-item:hover,
.mc-search-item.highlighted {
  background-color: #eaf1f8;
  color: #003366;
}

.mc-search-item-cat {
  font-size: 10px;
  color: #555555;
  background-color: #edf2f7;
  padding: 1px 5px;
  border-radius: 2px;
  margin-left: 6px;
  white-space: nowrap;
}

.mc-search-no-results {
  padding: 9px 10px;
  font-size: 11.5px;
  color: #777777;
  text-align: center;
}

.mc-side-card {
  border: 1px solid #a3b8cc;
  margin-bottom: 15px;
}

.mc-side-card-title {
  background-color: #2b5a88;
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  padding: 5px 8px;
}

.mc-side-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 8px;
  gap: 4px 10px;
  font-size: 12px;
  background-color: #ffffff;
}

.mc-side-card-grid a {
  color: #0844a4;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mc-side-card-grid a:hover {
  text-decoration: underline;
}

.mc-side-card-footer {
  border-top: 1px solid #e0e0e0;
  padding: 6px 8px;
  font-size: 11px;
  color: #0844a4;
  background-color: #fcfcfc;
}

.mc-side-card-footer a {
  color: #0844a4;
  text-decoration: none;
}

.mc-side-card-footer a:hover {
  text-decoration: underline;
}

/* Amortization Schedule Section */
.mc-amort-section {
  border-top: 1px solid #cccccc;
  padding-top: 16px;
  margin-top: 20px;
}

.mc-amort-title {
  font-size: 18px;
  font-weight: bold;
  color: #003366;
  margin-bottom: 8px;
}

.mc-amort-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
}

.mc-tab-link {
  color: #0844a4;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 13px;
  padding: 0;
}

.mc-tab-link.active {
  color: #333333;
  font-weight: bold;
  text-decoration: none;
  cursor: default;
}

.mc-amort-content {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 20px;
  align-items: start;
}

@media (max-width: 900px) {
  .mc-amort-content {
    grid-template-columns: 1fr;
  }
}

/* Amortization Table */
.mc-amort-table-wrap {
  overflow-x: auto;
  border: 1px solid #cccccc;
}

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

.mc-amort-table th {
  background-color: #e6eef5;
  color: #003366;
  font-weight: bold;
  padding: 4px 6px;
  text-align: right;
  border: 1px solid #cccccc;
  white-space: nowrap;
}

.mc-amort-table th:first-child,
.mc-amort-table th:nth-child(2) {
  text-align: center;
}

.mc-amort-table td {
  padding: 3px 6px;
  text-align: right;
  border: 1px solid #e0e0e0;
  white-space: nowrap;
}

.mc-amort-table td:first-child,
.mc-amort-table td:nth-child(2) {
  text-align: center;
}

.mc-amort-table tr:nth-child(even) td {
  background-color: #f7f9fa;
}

/* Line Chart Visualizer */
.mc-chart-box {
  background-color: #ffffff;
  padding: 10px;
}

.mc-line-chart-legend {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 11.5px;
  margin-bottom: 6px;
}

.mc-chart-line-indicator {
  display: inline-block;
  width: 16px;
  height: 3px;
  vertical-align: middle;
  margin-right: 4px;
}

.mc-line-balance { background-color: #2b5a88; }
.mc-line-interest { background-color: #4caf50; }
.mc-line-payment { background-color: #d32f2f; }

.mc-svg-chart {
  width: 100%;
  max-width: 440px;
  height: 240px;
  display: block;
  margin: 0 auto;
}

/* Floating Toast Notification */
.mc-toast {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translate(-50%, -20px);
  background-color: #2e7d32;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mc-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

/* Modal Backdrops & Cards */
.mc-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 16px;
  overflow-y: auto;
}

.mc-modal-card {
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 550px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  border: 1px solid #c2c2c2;
}

.mc-modal-card-lg {
  max-width: 780px;
}

.mc-modal-header {
  background-color: #2b5a88;
  color: #ffffff;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 3px 3px 0 0;
}

.mc-modal-title {
  font-size: 15px;
  font-weight: bold;
  margin: 0;
}

.mc-modal-close {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}

.mc-modal-close:hover {
  color: #ffcccc;
}

.mc-modal-body {
  padding: 16px;
  overflow-y: auto;
  font-size: 13px;
  color: #333333;
}

.mc-modal-footer {
  background-color: #f7f9fa;
  border-top: 1px solid #e0e0e0;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 0 3px 3px;
}

.mc-btn-primary {
  background-color: #2b5a88;
  color: #ffffff;
  border: 1px solid #1b4570;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 2px;
  cursor: pointer;
}

.mc-btn-primary:hover {
  background-color: #1b4570;
}

.mc-btn-secondary {
  background-color: #f0f0f0;
  color: #333333;
  border: 1px solid #cccccc;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 2px;
  cursor: pointer;
}

.mc-btn-secondary:hover {
  background-color: #e4e4e4;
}

/* Saved Scenarios List */
.mc-saved-empty {
  padding: 24px;
  text-align: center;
  color: #777777;
  font-style: italic;
}

.mc-saved-item {
  border: 1px solid #d9e2ec;
  border-radius: 3px;
  padding: 10px 12px;
  margin-bottom: 10px;
  background-color: #fafbfc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.mc-saved-item:hover {
  background-color: #f0f4f8;
}

.mc-saved-details {
  flex: 1;
}

.mc-saved-price {
  font-weight: bold;
  color: #003366;
  font-size: 14px;
}

.mc-saved-meta {
  font-size: 11.5px;
  color: #555555;
  margin-top: 2px;
}

.mc-saved-time {
  font-size: 10.5px;
  color: #888888;
  margin-top: 2px;
}

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

.mc-saved-btn-load {
  background-color: #2e7d32;
  color: #ffffff;
  border: none;
  padding: 4px 10px;
  font-size: 11.5px;
  font-weight: bold;
  border-radius: 2px;
  cursor: pointer;
}

.mc-saved-btn-load:hover {
  background-color: #1b5e20;
}

.mc-saved-btn-del {
  background-color: #d32f2f;
  color: #ffffff;
  border: none;
  padding: 4px 8px;
  font-size: 11.5px;
  border-radius: 2px;
  cursor: pointer;
}

.mc-saved-btn-del:hover {
  background-color: #b71c1c;
}

/* Print Toolbar & Sheet */
.mc-print-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
}

.mc-print-action-btn {
  background-color: #f4f6f8;
  color: #003366;
  border: 1px solid #b8c9d9;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 2px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mc-print-action-btn:hover {
  background-color: #e2eaf1;
}

.mc-btn-print-now {
  background-color: #2e7d32;
  color: #ffffff;
  border-color: #1b5e20;
}

.mc-btn-print-now:hover {
  background-color: #1b5e20;
}

.mc-print-sheet {
  background: #ffffff;
  border: 1px solid #d0d0d0;
  padding: 16px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  color: #111111;
}

.mc-print-tip {
  font-size: 11px;
  color: #666666;
}

/* PRINT MEDIA QUERY FOR HIGH-ACCURACY HARDCOPY & PDF PRINTING */
@media print {
  body {
    background: #ffffff !important;
    color: #000000 !important;
    font-size: 10pt !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* When printing directly from the Print Modal */
  body.mc-printing-modal .mc-page-container,
  body.mc-printing-modal .site-header,
  body.mc-printing-modal .site-footer,
  body.mc-printing-modal .mc-toast,
  body.mc-printing-modal #mc-saved-modal {
    display: none !important;
  }

  body.mc-printing-modal .mc-modal-backdrop#mc-print-modal {
    display: block !important;
    position: static !important;
    background: transparent !important;
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
  }

  body.mc-printing-modal .mc-modal-card-lg {
    max-width: 100% !important;
    width: 100% !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
  }

  body.mc-printing-modal .mc-modal-header,
  body.mc-printing-modal .mc-print-toolbar,
  body.mc-printing-modal .mc-modal-footer,
  body.mc-printing-modal .mc-modal-close {
    display: none !important;
  }

  body.mc-printing-modal .mc-print-sheet {
    display: block !important;
    width: 100% !important;
    max-height: none !important;
    overflow: visible !important;
  }

  /* When printing the main page outside the modal */
  body:not(.mc-printing-modal) .site-header,
  body:not(.mc-printing-modal) .site-footer,
  body:not(.mc-printing-modal) .mc-top-bar,
  body:not(.mc-printing-modal) .mc-instruction-bar,
  body:not(.mc-printing-modal) .mc-sidebar-col,
  body:not(.mc-printing-modal) .mc-btn-row,
  body:not(.mc-printing-modal) .mc-rates-box,
  body:not(.mc-printing-modal) .mc-save-btn,
  body:not(.mc-printing-modal) .mc-saved-badge-btn,
  body:not(.mc-printing-modal) .mc-toast,
  body:not(.mc-printing-modal) .mc-modal-backdrop,
  body:not(.mc-printing-modal) .mc-print-toolbar,
  body:not(.mc-printing-modal) .mc-print-tip {
    display: none !important;
  }

  .mc-page-container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .mc-main-grid {
    display: flex !important;
    flex-direction: row !important;
    gap: 16px !important;
  }

  .mc-form-col {
    width: 38% !important;
  }

  .mc-results-col {
    width: 62% !important;
  }

  .mc-amort-section {
    page-break-before: auto !important;
  }

  .mc-amort-content {
    display: block !important;
  }

  .mc-chart-box {
    display: none !important;
  }

  .mc-amort-table-wrap {
    overflow: visible !important;
    border: 1px solid #333333 !important;
  }

  .mc-amort-table {
    width: 100% !important;
    border-collapse: collapse !important;
  }

  .mc-amort-table th, .mc-amort-table td {
    border: 1px solid #666666 !important;
    color: #000000 !important;
    padding: 3px 5px !important;
  }

  .mc-amort-table tr {
    page-break-inside: avoid !important;
  }
}
