/* ======== FORMS.CSS - Style formularzy ======== */

/* ======== INPUTY NUMERYCZNE ======== */
.input-number {
  padding: 8px;
  font-family: monospace;
  font-size: 16px;
  border: 1px solid #30363d;
  background: #0d1117;
  color: #c9d1d9;
  border-radius: 4px;
  box-sizing: border-box;
}

.input-number:focus {
  outline: none;
  border-color: #58a6ff;
  box-shadow: 0 0 0 2px rgba(88, 166, 255, 0.3);
}

/* Ukrycie strzałek w inputach numerycznych */
.input-number::-webkit-outer-spin-button,
.input-number::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-number {
  -moz-appearance: textfield;
}

/* Szerokości inputów */
.input-narrow {
  width: 55px !important;
  max-width: 55px !important;
}

.input-medium {
  width: 80px;
}

.input-wide {
  width: 120px;
}

/* ======== LABELE ======== */
.label-default {
  color: #c9d1d9;
}

.label-bold {
  color: #c9d1d9;
  font-weight: bold;
}

.label-accent {
  color: #58a6ff;
}

/* ======== BUTTONY ======== */
.btn-primary {
  padding: 8px 16px;
  cursor: pointer;
  background: #238636;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: #2ea043;
}

.btn-primary:active {
  transform: translateY(1px);
}

/* ======== HINTY I STATUSY ======== */
.hint-text {
  font-size: 12px;
  color: #8b949e;
}

.status-text {
  font-size: 12px;
  color: #8b949e;
  min-width: 120px;
  text-align: center;
}

/* ======== EFEKTYWNY KURS - BOX ======== */
.effective-rate-box {
  justify-content: center;
  background: #1c2128;
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid #30363d;
}

.effective-rate-label {
  color: #8b949e;
}

.effective-rate-formula {
  color: #c9d1d9;
  font-family: monospace;
}

.effective-rate-result {
  color: #3fb950;
  font-family: monospace;
  font-size: 1.1em;
}
