/* CALCULATOR.CSS - Styles spécifiques à la calculette (VERSION GÉNÉRIQUE) */

/* Operation Choice Section - ULTRA COMPACT */
.operation-choice {
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

.operation-choice h2 {
  color: var(--rdc-yellow);
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
}

.tabs-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

/* Calculator Section */
.calculator-section {
  max-width: 600px;
  margin: 0 auto;
}

.calculator-container {
  background: var(--anthracite);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--spacing-xl);
  border: 4px double var(--rdc-red);
}

.calculator-header {
  text-align: center;
  margin-bottom: var(--spacing-xs);
}

/* GÉNÉRIQUE : dollar-bills → currency-bills */
.currency-bills {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xs);
  align-items: center;
}

/* GÉNÉRIQUE : dollar-bill → currency-bill */
.currency-bill {
  max-width: 120px;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* Tab Content */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Résultats - FOND BLEU TEXTE JAUNE */
.result {
  background: var(--rdc-blue);
  color: var(--rdc-yellow);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-top: var(--spacing-md);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--rdc-red);
  line-height: 1.3;
}

.exchange-rates {
  background: var(--anthracite-light);
  color: var(--rdc-yellow);
  padding: var(--spacing-sm);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: var(--font-size-base);
  font-weight: 500;
  margin-top: var(--spacing-xs);
  border: 1px solid var(--rdc-red);
  line-height: 1.2;
}