/* ==========================================================================
   Marriage Tax Calculator - Exact Design & Stylesheet
   Matches Calculator Archive Classic Blue & Green Table Theme
   ========================================================================== */

:root {
  --mt-blue-header: #24588e;
  --mt-blue-nav: #003366;
  --mt-blue-hover: #002277;
  --mt-spouse1-hdr: #94c0f3;
  --mt-spouse1-bg: #bde0fe;
  --mt-spouse1-alt: #cce7ff;
  --mt-spouse2-hdr: #a4d9a6;
  --mt-spouse2-bg: #c8e6c9;
  --mt-spouse2-alt: #d4ebd5;
  --mt-green-btn: #388e3c;
  --mt-green-btn-hover: #2e7d32;
  --mt-gray-btn: #8f9ca6;
  --mt-gray-btn-hover: #7b8892;
  --mt-border: #6b7280;
  --mt-table-border: #7f9db9;
  --mt-text: #1f2937;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--mt-text);
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  background-color: var(--header-bg, #003366) !important;
  height: 48px;
  width: 100%;
  position: relative;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.site-header .header-container {
  max-width: 1040px;
  height: 100%;
  margin: 0 auto;
  padding: 0 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  box-sizing: border-box;
}

.site-header .header-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header .logo {
  text-decoration: none !important;
  display: inline-flex;
  align-items: baseline;
  user-select: none;
  line-height: 1;
}

.site-header .logo-white {
  color: #ffffff !important;
  font-size: 25px !important;
  font-weight: 700 !important;
  letter-spacing: -0.3px;
  font-family: Arial, Helvetica, sans-serif;
}

.site-header .logo-green {
  color: var(--logo-green, #82c341) !important;
  font-size: 25px !important;
  font-weight: 700 !important;
  font-family: Arial, Helvetica, sans-serif;
}

.site-header .header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.k-top-search-wrap {
  position: relative;
}

.k-top-search-input {
  width: 220px;
  height: 26px;
  padding: 2px 8px;
  font-size: 12px;
  border: 1px solid #7f9db9;
  border-radius: 2px;
  background-color: #ffffff;
  color: #000000;
  box-sizing: border-box;
}

.k-top-search-input:focus {
  outline: none;
  border-color: #1a5695;
  box-shadow: 0 0 3px rgba(26, 86, 149, 0.4);
}

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

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

.k-search-item:hover {
  background-color: #eaf2fb;
}

.k-search-item .k-search-cat {
  font-size: 10px;
  color: #777777;
}

/* ==========================================================================
   PAGE CONTAINER & LAYOUT
   ========================================================================== */
.k-page-container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 12px 14px 40px;
  box-sizing: border-box;
}

.k-breadcrumbs-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.k-breadcrumbs {
  font-size: 12px;
  color: #555555;
}

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

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

.k-breadcrumbs span {
  margin: 0 3px;
  color: #777777;
}

.k-breadcrumbs .crumb-current {
  color: #333333;
  font-weight: normal;
}

.k-top-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.k-top-link-btn {
  background: none;
  border: none;
  color: #0844a4;
  font-size: 12px;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.k-top-link-btn:hover {
  color: #002277;
}

.k-page-title {
  font-size: 22px;
  font-weight: bold;
  color: #1a5695;
  margin: 0 0 10px 0;
  font-family: Arial, Helvetica, sans-serif;
}

.k-page-intro {
  font-size: 12px;
  line-height: 1.6;
  color: #333333;
  margin: 0 0 16px 0;
}

.k-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 275px;
  gap: 24px;
  align-items: start;
}

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

/* ==========================================================================
   MARRIAGE TAX TABLE (EXACT CLONE OF IMAGE 2)
   ========================================================================== */
.mt-table-wrap {
  margin-bottom: 20px;
  border: 1px solid #7f9db9;
  background-color: #ffffff;
  overflow-x: auto;
  max-width: 500px;
}

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

.mt-calc-table th,
.mt-calc-table td {
  border: 1px solid #7f9db9;
  padding: 5px 8px;
  vertical-align: middle;
}

.mt-col-label {
  width: 38%;
  background-color: #ffffff;
  color: #333333;
  font-weight: normal;
  text-align: left;
}

.mt-col-spouse1 {
  width: 31%;
  background-color: var(--mt-spouse1-bg);
  text-align: left;
}

.mt-col-spouse2 {
  width: 31%;
  background-color: var(--mt-spouse2-bg);
  text-align: left;
}

.mt-hdr-spouse1 {
  background-color: var(--mt-spouse1-hdr) !important;
  color: #000000;
  font-weight: bold;
  text-align: center;
  font-size: 13px;
  padding: 6px 8px;
}

.mt-hdr-spouse2 {
  background-color: var(--mt-spouse2-hdr) !important;
  color: #000000;
  font-weight: bold;
  text-align: center;
  font-size: 13px;
  padding: 6px 8px;
}

.mt-input-text {
  width: 90%;
  height: 24px;
  padding: 2px 6px;
  font-size: 12px;
  border: 1px solid #7f9db9;
  border-radius: 2px;
  background-color: #ffffff;
  color: #000000;
  box-sizing: border-box;
}

.mt-input-text:focus {
  outline: none;
  border-color: #1a5695;
}

.mt-select {
  width: 90%;
  height: 24px;
  padding: 1px 4px;
  font-size: 12px;
  border: 1px solid #7f9db9;
  border-radius: 2px;
  background-color: #ffffff;
  color: #000000;
  box-sizing: border-box;
}

.mt-sub-labels {
  margin-top: 4px;
  font-size: 11px;
  color: #555555;
  line-height: 1.4;
  padding-left: 6px;
}

.mt-deduction-hdr {
  font-size: 12px;
  margin-bottom: 4px;
}

.mt-radio-group {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}

.mt-radio-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.mt-percent-wrap {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.mt-percent-wrap input {
  width: 60px;
}

/* Itemized expansion rows */
.mt-itemized-details {
  margin-top: 6px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px dashed #7f9db9;
  border-radius: 2px;
  font-size: 11px;
}

.mt-itemized-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  gap: 6px;
}

.mt-itemized-row input {
  width: 75px;
  height: 20px;
  font-size: 11px;
  padding: 1px 4px;
  border: 1px solid #7f9db9;
  border-radius: 2px;
}

/* Button row at the bottom of the table matching image */
.mt-table-actions {
  padding: 8px 10px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-calculate {
  background-color: var(--mt-green-btn);
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  border: 1px solid #2e7d32;
  border-radius: 3px;
  padding: 5px 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

.btn-clear {
  background-color: var(--mt-gray-btn);
  color: #ffffff;
  font-size: 12px;
  font-weight: normal;
  border: 1px solid #7b8892;
  border-radius: 3px;
  padding: 5px 14px;
  cursor: pointer;
}

.btn-clear:hover {
  background-color: var(--mt-gray-btn-hover);
}

/* ==========================================================================
   RESULTS CARD & DETAILED BREAKDOWN
   ========================================================================== */
.mt-results-card {
  border: 1px solid #7f9db9;
  background-color: #ffffff;
  margin-bottom: 24px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.mt-results-header {
  background-color: var(--mt-blue-header);
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  padding: 7px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mt-banner-impact {
  padding: 14px 16px;
  margin: 12px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.mt-banner-bonus {
  background-color: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #1b5e20;
}

.mt-banner-penalty {
  background-color: #ffebee;
  border: 1px solid #ffcdd2;
  color: #b71c1c;
}

.mt-banner-neutral {
  background-color: #e3f2fd;
  border: 1px solid #90caf9;
  color: #0d47a1;
}

.mt-banner-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mt-banner-badge {
  font-size: 11px;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-bonus {
  background-color: #2e7d32;
  color: #ffffff;
}

.badge-penalty {
  background-color: #c62828;
  color: #ffffff;
}

.badge-neutral {
  background-color: #1565c0;
  color: #ffffff;
}

.mt-banner-desc {
  font-size: 12px;
  margin: 0;
}

.mt-banner-amount {
  text-align: right;
}

.mt-banner-big {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.1;
}

.mt-banner-sub {
  font-size: 11px;
  opacity: 0.85;
}

/* Detailed Comparison Table */
.mt-res-table-wrap {
  padding: 0 12px 14px;
  overflow-x: auto;
}

.mt-res-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}

.mt-res-table th,
.mt-res-table td {
  border: 1px solid #cbd5e1;
  padding: 6px 8px;
  text-align: right;
}

.mt-res-table th:first-child,
.mt-res-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.mt-res-table thead th {
  background-color: #f1f5f9;
  color: #1e293b;
  font-weight: bold;
  font-size: 11px;
}

.mt-res-table tr.mt-highlight-row td {
  background-color: #f8fafc;
  font-weight: bold;
  border-top: 2px solid #94a3b8;
  border-bottom: 2px solid #94a3b8;
}

.mt-res-table tr.mt-total-row td {
  background-color: #eff6ff;
  font-size: 12px;
  font-weight: bold;
  color: #1a5695;
  border-top: 2px solid #1a5695;
  border-bottom: 2px solid #1a5695;
}

.mt-positive-text {
  color: #2e7d32;
  font-weight: bold;
}

.mt-negative-text {
  color: #c62828;
  font-weight: bold;
}

/* ==========================================================================
   VISUAL CHARTS & GRAPHS
   ========================================================================== */
.mt-charts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 12px;
}

@media (max-width: 650px) {
  .mt-charts-grid {
    grid-template-columns: 1fr;
  }
}

.mt-chart-box {
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 10px;
  background-color: #fafbfc;
}

.mt-chart-title {
  font-size: 12px;
  font-weight: bold;
  color: #24588e;
  margin: 0 0 8px 0;
  text-align: center;
}

.mt-legend-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
  font-size: 10px;
}

.mt-legend-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mt-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
}

/* ==========================================================================
   FRACTION ARITHMETIC & RATIO SECTION
   ========================================================================== */
.mt-fraction-card {
  border: 1px solid #7f9db9;
  background-color: #ffffff;
  border-radius: 2px;
  margin-bottom: 24px;
}

.mt-fraction-header {
  background-color: #24588e;
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  padding: 6px 12px;
}

.mt-fraction-body {
  padding: 14px;
  font-size: 12px;
}

.mt-ratio-display {
  background-color: #f0f7ff;
  border: 1px solid #bfdbfe;
  padding: 10px 14px;
  border-radius: 3px;
  margin-bottom: 14px;
}

.mt-ratio-title {
  font-weight: bold;
  color: #1e3a8a;
  margin: 0 0 4px 0;
}

.mt-fraction-calc-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.mt-frac-block {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 60px;
}

.mt-frac-input {
  width: 50px;
  height: 24px;
  text-align: center;
  font-size: 12px;
  border: 1px solid #7f9db9;
  border-radius: 2px;
}

.mt-frac-divider {
  width: 100%;
  height: 1px;
  background-color: #000000;
  margin: 2px 0;
}

.mt-frac-op-select {
  height: 28px;
  padding: 0 6px;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #7f9db9;
  border-radius: 2px;
  background-color: #ffffff;
}

.mt-frac-res-box {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  padding: 10px 14px;
  border-radius: 3px;
  margin-top: 10px;
}

/* ==========================================================================
   SIDEBAR (EXACT CLONE OF IMAGE 2)
   ========================================================================== */
.k-sidebar {
  width: 275px;
  min-width: 275px;
  max-width: 275px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 680px) {
  .k-sidebar {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}

.k-side-search-box {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.k-side-search-input {
  flex: 1;
  min-width: 0;
  height: 26px;
  padding: 2px 8px;
  font-size: 12px;
  border: 1px solid #7f9db9;
  border-radius: 2px;
  background-color: #ffffff;
  color: #000000;
  box-sizing: border-box;
}

.k-side-search-input:focus {
  outline: none;
  border-color: #1a5695;
  box-shadow: 0 0 3px rgba(26, 86, 149, 0.4);
}

.k-side-search-btn {
  background-color: #295585;
  color: #ffffff;
  border: 1px solid #1a3f68;
  font-size: 12px;
  font-weight: bold;
  height: 26px;
  padding: 0 14px;
  cursor: pointer;
  border-radius: 2px;
  flex-shrink: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.k-side-search-btn:hover {
  background-color: #1e426a;
}

.k-side-card {
  border: 1px solid #7f9db9;
  background-color: #ffffff;
  border-radius: 2px;
  overflow: hidden;
}

.k-side-card-header {
  background-color: #2b5c8f;
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  padding: 6px 10px;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.1px;
}

.k-side-links-container {
  display: flex;
  justify-content: space-between;
  padding: 8px 10px;
  gap: 12px;
  background-color: #ffffff;
}

.k-side-col {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  min-width: 0;
}

.k-side-col li {
  margin-bottom: 4px;
  line-height: 1.45;
}

.k-side-col li a {
  font-size: 12px;
  color: #0844a4;
  text-decoration: underline;
  display: inline-block;
  white-space: nowrap;
  font-family: Arial, Helvetica, sans-serif;
}

.k-side-col li a:hover {
  color: #002277;
}

.k-side-more-item {
  margin-top: 5px;
}

.k-side-more-item a {
  font-weight: bold !important;
  color: #0844a4 !important;
}

.k-side-card-footer {
  border-top: 1px solid #cbd5e1;
  background-color: #f1f5f9;
  padding: 6px 8px;
  font-size: 11px;
  text-align: center;
  color: #475569;
  font-family: Arial, Helvetica, sans-serif;
}

.k-side-card-footer a {
  color: #0844a4;
  text-decoration: underline;
  margin: 0 3px;
}

.k-side-card-footer a:hover {
  color: #002277;
}

/* ==========================================================================
   MODAL DIALOGS (INSTANT TOOL IMAGE 1, HISTORY, PRINT)
   ========================================================================== */
.k-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 16px;
  box-sizing: border-box;
}

.k-modal-card {
  background-color: #ffffff;
  border: 1px solid #7f9db9;
  border-radius: 3px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  max-width: 500px;
  width: 100%;
  overflow: hidden;
  animation: modalFadeIn 0.15s ease-out;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

.k-modal-header {
  background-color: #24588e;
  color: #ffffff;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.k-modal-title {
  font-size: 14px;
  font-weight: bold;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.k-modal-close-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
}

.k-modal-close-btn:hover {
  opacity: 0.8;
}

.k-modal-body {
  padding: 16px;
  font-size: 12px;
}

.k-modal-desc {
  font-size: 12px;
  color: #555555;
  margin: 0 0 14px 0;
}

.k-modal-row {
  margin-bottom: 12px;
}

.k-modal-row label {
  display: block;
  font-weight: bold;
  margin-bottom: 4px;
  color: #333333;
}

.k-modal-row input {
  width: 100%;
  height: 26px;
  padding: 3px 8px;
  font-size: 12px;
  border: 1px solid #7f9db9;
  border-radius: 2px;
  box-sizing: border-box;
}

.k-modal-primary-btn {
  background-color: #24588e;
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  padding: 6px 16px;
  border: 1px solid #1a3f68;
  border-radius: 3px;
  cursor: pointer;
  margin-top: 8px;
}

.k-modal-primary-btn:hover {
  background-color: #1a3f68;
}

.k-modal-instant-res {
  margin-top: 14px;
  padding: 10px;
  background-color: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 3px;
  font-size: 12px;
}

/* History List Table */
.k-hist-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
  margin-top: 8px;
}

.k-hist-table th,
.k-hist-table td {
  border: 1px solid #cbd5e1;
  padding: 4px 6px;
  text-align: left;
}

.k-hist-table th {
  background-color: #f1f5f9;
}

/* ==========================================================================
   ARTICLE & SEO CONTENT STYLES
   ========================================================================== */
.mt-article-card {
  border: 1px solid #7f9db9;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 2px;
  margin-top: 24px;
  font-size: 13px;
  line-height: 1.65;
  color: #333333;
}

.mt-article-card h2 {
  font-size: 17px;
  color: #1a5695;
  margin: 20px 0 8px 0;
  font-weight: bold;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 4px;
}

.mt-article-card h2:first-of-type {
  margin-top: 0;
}

.mt-article-card h3 {
  font-size: 14px;
  color: #24588e;
  margin: 14px 0 6px 0;
  font-weight: bold;
}

.mt-article-card p {
  margin: 0 0 12px 0;
}

.mt-article-card ul, .mt-article-card ol {
  margin: 0 0 12px 0;
  padding-left: 20px;
}

.mt-article-card li {
  margin-bottom: 6px;
}

.mt-faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 10px 0;
}

.mt-faq-question {
  font-weight: bold;
  color: #1a5695;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.mt-faq-answer {
  margin-top: 8px;
  font-size: 12px;
  color: #4b5563;
  line-height: 1.5;
  display: none;
}

.mt-faq-item.active .mt-faq-answer {
  display: block;
}

/* ==========================================================================
   SITE FOOTER (Calculator Archive Standard)
   ========================================================================== */
.site-footer {
  background-color: var(--footer-bg, #e9e9e9);
  border-top: 1px solid var(--footer-border, #d4d4d4);
  padding: 24px 0 30px 0;
  width: 100%;
  margin-top: 28px;
  box-sizing: border-box;
}

.footer-container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.footer-desc {
  font-size: 12px;
  color: var(--text-muted, #595959);
  line-height: 1.55;
  margin-bottom: 12px;
  text-align: left;
}

[dir="rtl"] .footer-desc {
  text-align: right;
}

.footer-links-row {
  text-align: center;
  margin-top: 18px;
  font-size: 12.5px;
  color: #666666;
}

.footer-link {
  color: var(--link-blue, #0844a4);
  text-decoration: none;
  margin: 0 4px;
}

.footer-link:hover {
  text-decoration: underline;
  color: #002277;
}

.footer-copyright {
  margin-left: 10px;
  margin-inline-start: 10px;
}

/* Print Specific Media */
@media print {
  .site-header,
  .k-sidebar,
  .k-top-links,
  .mt-table-actions,
  .mt-fraction-card,
  .k-modal-overlay,
  .site-footer {
    display: none !important;
  }
  .k-page-container {
    max-width: 100% !important;
    padding: 0 !important;
  }
  .k-main-grid {
    grid-template-columns: 1fr !important;
  }
  .mt-results-card {
    border: 1px solid #000000 !important;
    box-shadow: none !important;
  }
}
