/* VAT Calculator — Tool-specific styles */
.page { padding: 40px 20px; max-width: 800px; margin: 0 auto; }
.page h1 { font-size: 26px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.page .subtitle { color: #888; margin-bottom: 20px; font-size: 14px; }

.rate-row { margin-bottom: 12px; }
.rate-row label {
  display: block; font-size: 12px; color: #aaa;
  margin-bottom: 6px; font-weight: 500;
}
.rate-row input {
  width: 140px; padding: 10px 12px;
  background: #0d0d0d; color: #fff;
  border: 1px solid #2a2a2a; border-radius: 6px;
  font-size: 18px; font-weight: 600;
  font-family: 'SF Mono', Menlo, monospace;
}
.rate-row input:focus { border-color: #ff4444; outline: none; }

.presets {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 22px;
}
.preset-btn {
  padding: 6px 12px;
  background: #161616; border: 1px solid #2a2a2a; border-radius: 6px;
  color: #ccc; font-size: 12px; cursor: pointer; font-family: inherit;
  transition: all 0.15s;
}
.preset-btn:hover { border-color: #ff4444; color: #fff; }

.amounts-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 12px; margin-bottom: 14px;
}
.amount-input label {
  display: block; font-size: 12px; color: #aaa;
  margin-bottom: 6px; font-weight: 500;
}
.amount-input input {
  width: 100%; padding: 14px 12px;
  background: #0d0d0d; color: #fff;
  border: 1px solid #2a2a2a; border-radius: 6px;
  font-size: 22px; font-weight: 600;
  font-family: 'SF Mono', Menlo, monospace;
}
.amount-input input:focus { border-color: #ff4444; outline: none; }
#vat-amt { background: #161616; color: #ff9800; }

.hint { font-size: 12px; color: #666; }

.info-block table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 13px; }
.info-block th, .info-block td {
  padding: 7px 10px; text-align: left; border-bottom: 1px solid #1f1f1f;
}
.info-block th { color: #fff; font-weight: 600; font-size: 12px; }
.info-block td { color: #ccc; }

@media (max-width: 600px) {
  .page { padding: 24px 12px; }
  .page h1 { font-size: 22px; }
  .amounts-row { grid-template-columns: 1fr; }
}
