/* Custom styles to complement Tailwind */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

input[type=number] {
    -moz-appearance: textfield;
}

body {
    background-image: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
}

.bg-brand-900 {
    background-color: #00474b;
}

/* Add a subtle animation to the result numbers */
[x-text] {
    transition: all 0.2s ease-out;
}
