/* ==========================================================================
   Design System & Custom Properties (Warm & Friendly Furusato Theme)
   ========================================================================== */
:root {
  --font-family-sans: 'Outfit', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Color Palette - Warm Furusato Style */
  --bg-color: #faf7f2; /* 柔らかな生成り色・お米の色 */
  --bg-gradient-start: #faf7f2;
  --bg-gradient-end: #f3edd3;
  
  --panel-bg: #ffffff; /* 清潔感のある白 */
  --panel-border: #e9e2d5;
  --panel-shadow: 0 10px 30px -10px rgba(139, 92, 26, 0.15);
  
  --text-primary: #2d251e; /* 温かみのある濃いブラウン */
  --text-secondary: #665b50; /* 優しい中間のブラウン */
  --text-muted: #968a7d;
  
  --color-primary: #ff782b; /* 暖かなみかんオレンジ */
  --color-primary-hover: #e05e16;
  --color-secondary: #4a9e52; /* 豊かな森のグリーン */
  --color-accent: #2e7d32; /* 信頼の濃いグリーン */
  --color-warning: #e65100; /* 注意用の濃いオレンジ */
  --color-danger: #d32f2f;
  
  /* Gradients */
  --grad-primary: linear-gradient(135deg, #ff782b 0%, #ff5252 100%);
  --grad-highlight: linear-gradient(135deg, #66bb6a 0%, #2e7d32 100%);
  --grad-warning: linear-gradient(135deg, #ffa726 0%, #fb8c00 100%);
}

/* ==========================================================================
   Global Reset & Base Styles
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family-sans);
  background-color: var(--bg-color);
  background-image: radial-gradient(circle at 100% 0%, rgba(255, 120, 43, 0.08) 0%, transparent 40%),
                    radial-gradient(circle at 0% 100%, rgba(74, 158, 82, 0.08) 0%, transparent 45%);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   Layout Structures
   ========================================================================== */
.app-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.app-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.logo-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.logo-badge {
  background: var(--color-secondary);
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(74, 158, 82, 0.25);
}

.app-header h1 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #3e2723; /* 深いウッドブラウン */
}

.app-header h1 span {
  color: var(--color-primary);
}

.subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 400;
}

/* App Grid Layout */
.app-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 968px) {
  .app-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   Panel & Section Components (Warm White Cards)
   ========================================================================== */
.glass-panel {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  box-shadow: var(--panel-shadow);
  padding: 2.5rem;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 2px solid #f3ebd6;
  padding-bottom: 0.75rem;
  color: #4e342e;
}

.section-subtitle {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-secondary);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(74, 158, 82, 0.1);
  border: 1.5px solid var(--color-secondary);
  color: var(--color-secondary);
  font-size: 0.9rem;
  font-weight: 700;
}

/* Form Sections */
.form-section {
  margin-bottom: 2rem;
  background: #fbf9f4; /* 少し明るい内背景 */
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid #f0e9dc;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #3e2723;
}

.required {
  background: var(--color-primary);
  color: #fff;
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.5rem;
  font-weight: 700;
  vertical-align: middle;
}

.help-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e9e2d5;
  color: var(--text-secondary);
  font-size: 0.75rem;
  cursor: pointer;
  margin-left: 0.4rem;
  vertical-align: middle;
  transition: all 0.2s;
  font-weight: 700;
}

.help-trigger:hover {
  background: var(--color-secondary);
  color: #fff;
}

/* Input Fields Style */
.input-with-unit {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-unit input[type="number"] {
  width: 100%;
  padding: 0.85rem 3rem 0.85rem 1rem;
  background: #ffffff;
  border: 2px solid #dcd3bf;
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-family-sans);
  font-size: 1.05rem;
  font-weight: 500;
  transition: all 0.25s;
}

.input-with-unit input[type="number"]:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(255, 120, 43, 0.15);
  background: #ffffff;
}

.input-with-unit .unit {
  position: absolute;
  right: 1.2rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 700;
  pointer-events: none;
}

.input-hint {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

/* Highlight input for Advanced */
.highlight-input {
  background: #fdf6ec; /* 暖かいオレンジベージュ */
  padding: 1.25rem;
  border-radius: 10px;
  border-left: 4px solid var(--color-primary);
}

.highlight-label {
  color: #a04e00;
}

/* Toggle Buttons */
.toggle-buttons {
  display: flex;
  background: #f0e9dc;
  padding: 0.25rem;
  border-radius: 10px;
  border: 1px solid #e2d8c5;
}

.toggle-buttons input[type="radio"] {
  display: none;
}

.toggle-label {
  flex: 1;
  text-align: center;
  padding: 0.65rem;
  margin: 0;
  cursor: pointer;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.2s;
  color: var(--text-secondary);
}

.toggle-buttons input[type="radio"]:checked + .toggle-label {
  background: #ffffff;
  color: var(--color-primary);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
}

/* Counter Inputs (Plus / Minus) */
.counter-input {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 2px solid #dcd3bf;
  border-radius: 10px;
  padding: 0.25rem;
  max-width: 150px;
}

.counter-input.size-sm {
  max-width: 130px;
}

.counter-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: none;
  background: #f4edd9;
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.counter-btn:hover {
  background: #e2d8c5;
}

.counter-input input {
  width: 100%;
  text-align: center;
  border: none;
  background: transparent;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 700;
  outline: none;
}

/* Range Slider */
.range-slider-wrapper {
  margin-top: 0.75rem;
}

input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  background: #e2d8c5;
  border-radius: 4px;
}

input[type="range"]::-webkit-slider-thumb {
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7px;
  box-shadow: 0 2px 6px rgba(255, 120, 43, 0.3);
  transition: all 0.1s;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  background: var(--color-primary-hover);
}

/* Checkbox Style */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--color-primary);
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.9rem;
  cursor: pointer;
}

.checkbox-stack {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* Accordion Component */
.accordion-section {
  padding: 0;
  overflow: hidden;
  border: 1px solid #e9e2d5;
}

.accordion-trigger {
  width: 100%;
  padding: 1.5rem;
  background: #ffffff;
  border: none;
  color: #4e342e;
  font-family: var(--font-family-sans);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  transition: background 0.25s;
}

.accordion-trigger:hover {
  background: #fbfaf7;
}

.accordion-trigger .chevron {
  transition: transform 0.3s ease;
  color: var(--text-secondary);
}

.accordion-trigger[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
  padding: 0 1.5rem;
  background: #faf8f3;
}

.accordion-trigger[aria-expanded="true"] + .accordion-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  border-top: 1px solid #f0e9dc;
}

/* Dependent Age Rows */
.dep-age-grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: #ffffff;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid #e9e2d5;
}

.dep-age-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.hidden {
  display: none !important;
}

/* ==========================================================================
   Result Sidebar (Right Panel)
   ========================================================================== */
.result-sticky-area {
  position: sticky;
  top: 2rem;
}

.result-card {
  border: 1px solid #e2d8c5;
  box-shadow: var(--panel-shadow);
  position: relative;
  overflow: visible; /* リボンがはみ出せるように変更 */
}

.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--color-primary);
  border-radius: 20px 20px 0 0;
}

.result-highlight {
  position: relative;
  text-align: center;
  background: radial-gradient(circle at 50% 50%, #fffdf4 0%, #fdf8e7 100%);
  border-radius: 16px;
  padding: 2.75rem 1.5rem 1.75rem 1.5rem; /* リボン用に上部にゆとりを持たせる */
  margin: 2.5rem 0 1.5rem 0;
  border: 2px solid #ebdcc5;
  box-shadow: 0 6px 20px rgba(139, 92, 26, 0.05);
}

/* 贈り物のような水引・熨斗リボンを表現 */
.result-highlight::before {
  content: '自己負担実質 2,000円';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #e53935 0%, #d81b60 100%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 1.25rem;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(229, 57, 53, 0.35);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.result-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.result-amount-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin: 0.75rem 0;
}

.amount-symbol {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-right: 0.2rem;
}

.amount-val {
  font-size: 4.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



.result-note {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Alerts / Warnings */
.alert-box {
  display: flex;
  gap: 0.85rem;
  padding: 1.25rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  line-height: 1.6;
}

.warning-box {
  background: #fff3e0;
  border: 1px solid #ffcc80;
  color: #e65100;
}

.warning-box h4 {
  color: var(--color-warning);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.alert-icon {
  font-size: 1.4rem;
  line-height: 1;
}

/* Breakdown Bars */
.breakdown-area {
  margin-bottom: 2.5rem;
}

.breakdown-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #3e2723;
  border-left: 3px solid var(--color-secondary);
  padding-left: 0.5rem;
}

.breakdown-bars {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.bar-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.bar-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.bar-label {
  color: var(--text-secondary);
}

.bar-value {
  font-weight: 700;
  color: #3e2723;
}

.progress-track {
  height: 8px;
  background: #f0e9dc;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 4px;
  width: 0%;
  transition: width 0.5s ease-out;
}

.fill-it {
  background: #29b6f6; /* 空色 */
}

.fill-lt-basic {
  background: #ab47bc; /* 藤色 */
}

.fill-lt-special {
  background: var(--color-secondary); /* 新緑色 */
}

/* Affiliate CTA Area */
.cta-area {
  background: #faf8f4;
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid #ebdcc5;
}

.cta-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-align: center;
  color: #3e2723;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1.4rem;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  filter: brightness(1.05);
}

.cta-btn .arrow {
  transition: transform 0.2s;
}

.cta-btn:hover .arrow {
  transform: translateX(4px);
}

.satofull {
  background: linear-gradient(135deg, #cc9f4c 0%, #aa7a27 100%);
  border: 1px solid #aa7a27;
}

.furunabi {
  background: linear-gradient(135deg, #e53935 0%, #b71c1c 100%);
  border: 1px solid #b71c1c;
}

.rakuten {
  background: linear-gradient(135deg, #ff4081 0%, #d81b60 100%);
  border: 1px solid #d81b60;
}

.ad-disclosure {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 0.85rem;
}

/* ==========================================================================
   Modal Dialogs (Help Windows)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45, 37, 30, 0.5); /* 濃いブラウン透過 */
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.modal-card {
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: slideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid #e2d8c5;
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.75rem;
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close-btn:hover {
  color: var(--text-primary);
}

.help-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.help-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
}

.highlight-text {
  background: #faf6eb;
  border-left: 3px solid var(--color-primary);
  padding: 0.85rem;
  border-radius: 6px;
  color: #5d4037;
}

/* Source Sheet Demo Styling */
.help-image-placeholder {
  margin-top: 1.25rem;
  background: #fbf9f5;
  padding: 1.25rem;
  border-radius: 10px;
  border: 2px dashed #ebdcc5;
}

.dummy-source-sheet {
  background: #ffffff;
  color: #3e2723;
  padding: 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  border: 1px solid #e0d8ca;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.sheet-title {
  font-weight: 700;
  border-bottom: 2px solid #f0e9dc;
  display: block;
  padding-bottom: 0.4rem;
  margin-bottom: 0.75rem;
}

.sheet-highlight-box {
  border: 2px solid #ef5350;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  background: #ffebee;
}

.box-label {
  font-weight: 700;
  color: #c62828;
}

.box-value {
  font-weight: 800;
  color: #000;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.app-footer {
  margin-top: 5rem;
  border-top: 2px solid #f0e9dc;
  padding-top: 2.5rem;
}

.disclaimer {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: justify;
  margin-bottom: 1.2rem;
}

.copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* ==========================================================================
   Keyframes & Animations
   ========================================================================== */
@keyframes slideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ==========================================================================
   Print / PDF Styles
   ========================================================================== */
.result-actions {
  margin: 1.5rem 0;
  width: 100%;
}

.print-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.4rem;
  background-color: #ffffff;
  border: 2px solid #ebdcc5;
  color: var(--text-secondary);
  border-radius: 10px;
  font-family: var(--font-family-sans);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.print-btn:hover {
  background-color: #faf8f4;
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.print-icon {
  stroke: currentColor;
  transition: transform 0.2s;
}

.print-btn:hover .print-icon {
  transform: scale(1.1);
}

/* ==========================================================================
   Print Optimize Media Query (@media print)
   ========================================================================== */
@media print {
  body {
    background: #ffffff !important;
    background-image: none !important;
    color: #000000 !important;
    font-size: 12pt;
    line-height: 1.5;
  }

  /* 不要なUI要素をすべて印刷対象から隠す */
  .blur-bg-element,
  .app-header p.subtitle,
  .input-card, /* 入力フォーム全体を非表示 */
  .result-actions, /* 印刷ボタン自体を非表示 */
  .cta-area, /* アフィリエイト誘導ボタンを非表示 */
  .app-footer,
  .help-trigger,
  .accordion-trigger .chevron {
    display: none !important;
  }

  /* コンテナを印刷用に100%幅に広げる */
  .app-container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .app-grid {
    display: block !important;
  }

  .result-sticky-area {
    position: static !important;
  }

  .glass-panel {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  .result-card::before {
    display: none !important;
  }

  /* 結果表示用のハイライト枠を印刷用に整える */
  .result-highlight {
    background: #faf6eb !important;
    border: 2px solid #ebdcc5 !important;
    padding: 3rem 1.5rem 1.5rem 1.5rem !important;
    margin: 2rem 0 !important;
    page-break-inside: avoid;
    border-radius: 12px !important;
    box-shadow: none !important;
  }

  .result-highlight::before {
    background: #d32f2f !important;
    color: #ffffff !important;
    border: 1px solid #d32f2f !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .amount-val {
    background: none !important;
    -webkit-text-fill-color: initial !important;
    color: #ff782b !important;
  }

  /* 印刷レポート用のフッター注記 */
  .result-card::after {
    content: "※本レポートはシミュレーターによる精密試算結果です。実際の控除額は確定申告等によって決定されます。";
    display: block;
    font-size: 9pt;
    color: #665b50;
    margin-top: 3rem;
    text-align: center;
    border-top: 1px solid #ebdcc5;
    padding-top: 1.5rem;
  }

  /* 内訳グラフの印刷用補正 */
  .progress-track {
    border: 1px solid #dcd3bf !important;
    background: #f5f5f5 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .progress-fill {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .fill-it {
    background-color: #3b82f6 !important;
  }

  .fill-lt-basic {
    background-color: #ab47bc !important;
  }

  .fill-lt-special {
    background-color: #4a9e52 !important;
  }
}
