.trf-tracker-wrapper {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
}

.trf-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trf-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.trf-label {
  font-weight: 600;
  font-size: 14px;
  color: #0e2f72;
}

.trf-input {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.trf-input:focus {
  outline: none;
  border-color: #0e2f72;
  box-shadow: 0 0 0 2px rgba(14, 47, 114, 0.15);
}

.trf-button {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background-color: #0e2f72;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.trf-button:hover {
  background-color: #0a2259;
}

.trf-button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.trf-result {
  margin-top: 20px;
}

.trf-result-card {
  background: #f9f9f9;
  padding: 15px;
  border-left-width: 5px;
  border-left-style: solid;
  border-left-color: #d1af4d;
  border-radius: 4px;
}

.trf-result-title {
  margin: 0 0 10px 0;
  font-size: 16px;
  color: #0e2f72;
}

.trf-result-status {
  margin: 0 0 8px 0;
  font-size: 14px;
}

.trf-result-note {
  margin: 0;
  font-size: 13px;
  color: #666;
}

.trf-error-message {
  color: #c0392b;
  text-align: center;
  padding: 10px;
  font-size: 14px;
}

.trf-calculator-wrapper {
  max-width: 480px;
  margin: 0 auto;
  padding: 24px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.trf-calculator-title {
  margin: 0 0 20px 0;
  font-size: 20px;
  font-weight: 700;
  color: #0e2f72;
  text-align: center;
}

.trf-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.trf-input-prefix {
  position: absolute;
  left: 12px;
  color: #666;
  font-weight: 500;
  font-size: 14px;
}

.trf-input-currency {
  padding-left: 36px !important;
}

.trf-hint {
  font-size: 12px;
  color: #ac8a28;
  margin-top: 4px;
}

.trf-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #e0e0e0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.trf-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #d1af4d;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(172, 138, 40, 0.4);
  transition: transform 0.2s ease;
}

.trf-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.trf-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #d1af4d;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(172, 138, 40, 0.4);
}

.trf-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #888;
  margin-top: 4px;
}

.trf-static-value {
  padding: 10px 12px;
  background: #f5f5f5;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.trf-calculator-result {
  margin-top: 24px;
}

.trf-result-card-calculator {
  background: #fff;
  border-left: none;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px;
}

.trf-result-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.trf-result-row:last-child {
  border-bottom: none;
}

.trf-result-label {
  color: #666;
  font-size: 14px;
}

.trf-result-value {
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

.trf-result-highlight {
  background: linear-gradient(135deg, #f8f4e8 0%, #fdf9ef 100%);
  margin: 10px -16px -16px -16px;
  padding: 16px !important;
  border-radius: 0 0 8px 8px;
}

.trf-result-highlight .trf-result-label {
  color: #0e2f72;
  font-weight: 600;
}

.trf-result-highlight .trf-result-value {
  color: #ac8a28;
  font-size: 18px;
}

.trf-button-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  background: #25d366;
  text-decoration: none;
  box-sizing: border-box;
  max-width: 100%;
}

.trf-button-whatsapp:hover {
  background: #1da851;
}

.trf-button-whatsapp svg {
  flex-shrink: 0;
}
