* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  font-family:
    "Noto Sans SC", "Noto Sans Thai", "Noto Sans KR", Tahoma, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background: #080c14;
  color: #fff;
  -webkit-tap-highlight-color: transparent;
}

.fco_tax_page-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  min-height: 100dvh;
}

.fco_tax_app {
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: radial-gradient(
    ellipse at 50% 120%,
    #0a3d2a 0%,
    #0c1f2e 40%,
    #080c14 70%
  );
}

.fco_tax_app::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(30, 120, 70, 0.35) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* ===== Header ===== */
.fco_tax_hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.fco_tax_hdr-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fco_tax_hdr-logo {
  font-size: 1.6em;
  font-weight: 800;
  letter-spacing: -1px;
  color: #b4ff00;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.fco_tax_hdr-logo span {
  font-weight: 400;
}

.fco_tax_hdr-lang {
  position: relative;
}

.fco_tax_fullscreen-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  cursor: pointer;
  transition: all 0.2s;
}

.fco_tax_fullscreen-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.fco_tax_lang-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ddd;
  cursor: pointer;
  font-size: 0.9em;
  transition: all 0.2s;
}

.fco_tax_lang-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.fco_tax_lang-dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  background: #1a1e2e;
  border: 1px solid #2a2e3e;
  border-radius: 8px;
  padding: 6px 0;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
}

.fco_tax_lang-dropdown.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.fco_tax_lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: #ccc;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 0.9em;
  text-decoration: none;
  white-space: nowrap;
}

.fco_tax_lang-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.fco_tax_lang-item.active {
  color: #b4ff00;
  font-weight: 600;
}

.fco_tax_lang-flag-img {
  width: 24px;
  height: 16px;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

/* ===== Content ===== */
.fco_tax_content {
  flex: 1;
  padding: 12px 16px 20px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ===== Title Section ===== */
.fco_tax_title-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
}

.fco_tax_title-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.fco_tax_icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(180, 255, 0, 0.2), rgba(0, 191, 255, 0.15));
  border: 1px solid rgba(180, 255, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b4ff00;
  flex-shrink: 0;
}

.fco_tax_title {
  font-family:
    "Noto Sans SC", "Noto Sans Thai", "Noto Sans KR", Tahoma, sans-serif;
  font-size: 1.6em;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
}

.fco_tax_reset-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(255, 107, 107, 0.18);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 107, 107, 0.08));
  color: #e2aaaa;
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family:
    "Noto Sans SC", "Noto Sans Thai", "Noto Sans KR", Tahoma, sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.fco_tax_reset-icon {
  flex-shrink: 0;
  opacity: 0.95;
}

.fco_tax_reset-btn:hover {
  color: #ffd0d0;
  border-color: rgba(255, 107, 107, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 107, 107, 0.14));
  box-shadow: 0 0 18px rgba(255, 107, 107, 0.08);
}

.fco_tax_reset-btn:active {
  transform: translateY(1px);
  box-shadow: none;
}

/* ===== Price Input ===== */
.fco_tax_input-section {
  background: rgba(18, 18, 24, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 14px;
  backdrop-filter: blur(10px);
}

.fco_tax_input-label {
  font-size: 0.78em;
  color: #8a8a9a;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: block;
}

.fco_tax_input-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.fco_tax_input-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(10, 10, 18, 0.8);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s;
  overflow: hidden;
}

.fco_tax_input-wrap:focus-within {
  border-color: #b4ff00;
  box-shadow: 0 0 20px rgba(180, 255, 0, 0.1), inset 0 0 20px rgba(180, 255, 0, 0.03);
}

.fco_tax_price-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.4em;
  font-weight: 700;
  font-family: "Barlow Condensed", sans-serif;
  padding: 12px 14px;
  outline: none;
  letter-spacing: 1px;
}

.fco_tax_price-input::placeholder {
  color: #444;
  font-weight: 400;
  font-size: 0.7em;
  letter-spacing: 0;
}

.fco_tax_billion-btn {
  width: 44px;
  height: 100%;
  min-height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  color: #666;
  font-size: 1.1em;
  font-weight: 800;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fco_tax_billion-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #aaa;
}

.fco_tax_billion-btn.active {
  background: linear-gradient(135deg, rgba(180, 255, 0, 0.25), rgba(180, 255, 0, 0.15));
  color: #b4ff00;
  text-shadow: 0 0 10px rgba(180, 255, 0, 0.5);
}

.fco_tax_add-btn {
  width: 48px;
  background: linear-gradient(135deg, #1a3a1a, #0d2d0d);
  border: 1.5px solid rgba(180, 255, 0, 0.3);
  border-radius: 10px;
  color: #b4ff00;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.fco_tax_add-btn:hover {
  background: linear-gradient(135deg, #2a5a2a, #1a4a1a);
  border-color: #b4ff00;
  transform: scale(1.05);
}

.fco_tax_add-btn:active {
  transform: scale(0.95);
}

/* ===== Discount Options ===== */
.fco_tax_discount-section {
  background: rgba(18, 18, 24, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 14px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fco_tax_discount-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.fco_tax_discount-label {
  font-size: 0.75em;
  color: #8a8a9a;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 55px;
  flex-shrink: 0;
}

.fco_tax_discount-options {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.fco_tax_discount-amount {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.72em;
  color: #4ecb71;
  font-weight: 600;
  white-space: nowrap;
  margin-left: auto;
  letter-spacing: 0.3px;
  opacity: 0;
  transition: opacity 0.3s;
}

.fco_tax_discount-amount.visible {
  opacity: 1;
}

.fco_tax_coupon-input-wrap {
  display: flex;
  align-items: center;
  gap: 1px;
}

.fco_tax_coupon-input {
  width: 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: #e0e0e0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.82em;
  padding: 5px 4px;
  text-align: center;
  outline: none;
  transition: border-color 0.2s;
}

.fco_tax_coupon-input:focus {
  border-color: #b4ff00;
}

.fco_tax_coupon-input::placeholder {
  color: #555;
  font-size: 0.85em;
}

.fco_tax_coupon-pct {
  color: #666;
  font-size: 0.8em;
  font-weight: 500;
}

.fco_tax_opt-btn {
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #888;
  font-size: 0.78em;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.fco_tax_opt-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ccc;
}

.fco_tax_opt-btn.active {
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.2), rgba(0, 140, 200, 0.15));
  border-color: rgba(0, 191, 255, 0.5);
  color: #00bfff;
  font-weight: 600;
  box-shadow: 0 0 12px rgba(0, 191, 255, 0.15);
}

/* ===== Player List ===== */
.fco_tax_player-section {
  background: rgba(18, 18, 24, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 12px 14px;
  backdrop-filter: blur(10px);
}

.fco_tax_player-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.fco_tax_player-title {
  font-size: 0.78em;
  color: #8a8a9a;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.fco_tax_clear-list-btn {
  background: none;
  border: none;
  color: #555;
  font-size: 0.72em;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s;
  padding: 4px 8px;
}

.fco_tax_clear-list-btn:hover {
  color: #ff4444;
}

.fco_tax_player-list {
  max-height: 180px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
}

.fco_tax_player-list::-webkit-scrollbar {
  width: 4px;
}
.fco_tax_player-list::-webkit-scrollbar-track {
  background: transparent;
}
.fco_tax_player-list::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 2px;
}

.fco_tax_empty-list {
  text-align: center;
  color: #444;
  font-size: 0.8em;
  padding: 20px 0;
}

.fco_tax_player-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  margin-bottom: 4px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  animation: fco_tax_slideIn 0.3s ease;
}

@keyframes fco_tax_slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fco_tax_player-item-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fco_tax_player-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 191, 255, 0.15);
  color: #00bfff;
  font-size: 0.7em;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fco_tax_player-price {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05em;
  font-weight: 600;
  color: #e0e0e0;
  letter-spacing: 0.5px;
}

.fco_tax_player-tax-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fco_tax_player-tax {
  font-size: 0.75em;
  color: #ff6b6b;
  font-weight: 500;
}

.fco_tax_player-income {
  font-size: 0.75em;
  color: #4ecb71;
  font-weight: 600;
}

.fco_tax_player-del {
  background: none;
  border: none;
  color: #555;
  font-size: 1.1em;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
  line-height: 1;
}

.fco_tax_player-del:hover {
  color: #ff4444;
}

/* ===== Results ===== */
.fco_tax_result-section {
  background: linear-gradient(135deg, rgba(18, 22, 30, 0.9), rgba(12, 16, 24, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px;
  backdrop-filter: blur(10px);
}

.fco_tax_result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  font-size: 0.85em;
  color: #8a8a9a;
}

.fco_tax_result-row + .fco_tax_result-row {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.fco_tax_result-val {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 1.1em;
  letter-spacing: 0.5px;
  color: #ccc;
}

.fco_tax_discount-val {
  color: #f5c842 !important;
}

/* ===== GOOGLE ADSENSE ===== */
.ad-slot ins {
  margin-left: auto;
  margin-right: auto;
}

.ad-slot ins.adsbygoogle,
.ad-desktop-left ins.adsbygoogle,
.ad-desktop-right ins.adsbygoogle {
  display: block !important;
  width: 100% !important;
}

.ad-mobile {
  padding: 8px 16px 0;
}

.ad-mobile .ad-placeholder {
  width: 320px;
  max-width: 100%;
  height: 50px;
}

@media (min-width: 1025px) {
  .ad-mobile {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    overflow: hidden;
  }
}

.adsbygoogle.adsbygoogle-noablate {
  z-index: 2147483647 !important;
  pointer-events: none !important;
  background: transparent !important;
}

.adsbygoogle.adsbygoogle-noablate .adsbygoogle-primary-ad,
.adsbygoogle.adsbygoogle-noablate iframe,
.adsbygoogle.adsbygoogle-noablate .adsbygoogle-close-button {
  pointer-events: auto !important;
}

/* Right & Left Desktop Ads */
.ad-desktop-right,
.ad-desktop-left {
  display: none;
}

@media (min-width: 1150px) {
  .ad-desktop-right {
    display: block;
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 160px;
    height: 600px;
    z-index: 90;
  }

  .ad-desktop-left {
    display: block;
    position: fixed;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 160px;
    height: 600px;
    z-index: 90;
  }

  .ad-mobile {
    display: none !important;
  }
}

@media (min-width: 1500px) {
  .ad-desktop-right {
    width: 300px;
    right: 40px;
  }
  .ad-desktop-left {
    width: 300px;
    left: 40px;
  }
}

.fco_tax_tax-val {
  color: #ff6b6b !important;
}

.fco_tax_result-income {
  padding: 10px 0 6px;
  margin-top: 2px;
  border-top: 1px solid rgba(180, 255, 0, 0.15) !important;
  align-items: flex-start;
}

.fco_tax_result-income span:first-child {
  font-size: 0.95em;
  font-weight: 600;
  color: #aab;
  padding-top: 6px;
}

.fco_tax_income-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.fco_tax_income-val {
  font-size: 2em !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, #b4ff00, #7ecf00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 8px rgba(180, 255, 0, 0.3));
  line-height: 1.1;
}

.fco_tax_income-full {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75em;
  color: #6a7;
  text-align: right;
  margin-top: 2px;
  letter-spacing: 0.5px;
  font-weight: 500;
  min-height: 1em;
}

/* ===== Calculate Button ===== */
.fco_tax_calc-btn-wrap {
  padding: 2px 0;
}

.fco_tax_calc-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 1.1em;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
}

.fco_tax_calc-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}

.fco_tax_calc-btn:hover::before {
  left: 100%;
}

.fco_tax_calc-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(46, 204, 113, 0.35);
}

.fco_tax_calc-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(46, 204, 113, 0.2);
}

.fco_tax_calc-btn.fco_tax_btn-pulse {
  animation: fco_tax_pulse 0.4s ease;
}

@keyframes fco_tax_pulse {
  0% { transform: scale(1); }
  50% { transform: scale(0.97); }
  100% { transform: scale(1); }
}

/* ===== History ===== */
.fco_tax_history-section {
  background: rgba(18, 18, 24, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.fco_tax_history-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  cursor: pointer;
  font-size: 0.82em;
  color: #8a8a9a;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: background 0.2s;
}

.fco_tax_history-header:hover {
  background: rgba(255, 255, 255, 0.02);
}

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

.fco_tax_chevron {
  transition: transform 0.3s;
  color: #555;
}

.fco_tax_history-section.open .fco_tax_chevron {
  transform: rotate(180deg);
}

.fco_tax_clear-history-btn {
  background: none;
  border: none;
  color: #555;
  font-size: 0.9em;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s;
  padding: 2px 6px;
}

.fco_tax_clear-history-btn:hover {
  color: #ff4444;
}

.fco_tax_history-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 14px;
}

.fco_tax_history-section.open .fco_tax_history-body {
  max-height: 500px;
  padding: 0 14px 14px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
}

.fco_tax_no-history {
  text-align: center;
  color: #444;
  font-size: 0.8em;
  padding: 16px 0;
}

.fco_tax_history-entry {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 6px;
  animation: fco_tax_fadeIn 0.3s ease;
}

@keyframes fco_tax_fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.fco_tax_history-entry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.fco_tax_history-time {
  font-size: 0.68em;
  color: #555;
}

.fco_tax_history-discount-info {
  font-size: 0.65em;
  color: #00bfff;
  background: rgba(0, 191, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

.fco_tax_history-players {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.fco_tax_history-player-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.78em;
  color: #999;
}

.fco_tax_history-player-row .fco_tax_hp-price {
  font-family: "Barlow Condensed", sans-serif;
  color: #ccc;
}

.fco_tax_history-player-row .fco_tax_hp-income {
  font-family: "Barlow Condensed", sans-serif;
  color: #4ecb71;
  font-weight: 600;
}

.fco_tax_history-total {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8em;
}

.fco_tax_history-total span:first-child {
  color: #888;
}

.fco_tax_history-total-income {
  font-family: "Barlow Condensed", sans-serif;
  color: #b4ff00 !important;
  font-weight: 700;
}

/* ===== Responsive ===== */
@media (max-width: 480px) {
  .fco_tax_content {
    padding: 10px 12px 16px;
  }

  .fco_tax_title-section {
    align-items: flex-start;
  }

  .fco_tax_title {
    font-size: 1.35em;
  }

  .fco_tax_reset-btn {
    padding: 7px 12px;
    font-size: 0.68em;
  }

  .fco_tax_price-input {
    font-size: 1.2em;
    padding: 10px 12px;
  }

  .fco_tax_discount-label {
    width: 48px;
  }

  .fco_tax_opt-btn {
    padding: 5px 8px;
    font-size: 0.72em;
  }
}
