/*
 * Legacy Android fallback stylesheet.
 * Keep this file intentionally simple: old WebViews may ignore the main
 * generated stylesheet, but they can still apply plain CSS rules.
 */
html {
  background: #f8fbf9;
  color: #102018;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f8fbf9;
  color: #102018;
}

* {
  box-sizing: border-box;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: inline-block;
  vertical-align: middle;
}

#root {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 0%, rgba(33, 196, 105, 0.14), transparent 36%),
    radial-gradient(circle at 0% 100%, rgba(0, 150, 80, 0.08), transparent 36%),
    #f8fbf9;
}

.min-h-screen {
  min-height: 100vh;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-md {
  max-width: 430px;
}

.w-full {
  width: 100%;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.left-4 {
  left: 1rem;
}

.right-4 {
  right: 1rem;
}

.top-1\/2 {
  top: 50%;
}

.-translate-y-1\/2 {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.items-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.gap-1,
.gap-1\.5,
.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-5 > * + * {
  margin-top: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-8 {
  margin-top: 2rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4,
.p-5 {
  padding: 1.25rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pl-12 {
  padding-left: 3rem;
}

.pr-12 {
  padding-right: 3rem;
}

.h-5,
.w-5 {
  width: 1.25rem;
  height: 1.25rem;
}

.h-10,
.w-10 {
  width: 2.5rem;
  height: 2.5rem;
}

.h-14 {
  height: 3.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.rounded-full {
  border-radius: 999px;
}

.border,
.border-t {
  border-color: #dfe9e4;
}

.border {
  border-width: 1px;
  border-style: solid;
}

.border-t {
  border-top-width: 1px;
  border-top-style: solid;
}

.bg-card,
.bg-card-gradient {
  background: #ffffff;
}

.bg-muted,
.bg-secondary {
  background: #edf5f0;
}

.bg-money-gradient {
  background: #02a653;
  background: linear-gradient(135deg, #04984f 0%, #12c866 100%);
}

.bg-background\/90 {
  background: rgba(248, 251, 249, 0.92);
}

.text-primary-foreground {
  color: #ffffff;
}

.text-foreground {
  color: #102018;
}

.text-muted-foreground {
  color: #617069;
}

.text-gold {
  color: #00994d;
}

.text-destructive {
  color: #d73535;
}

.fill-current {
  fill: currentColor;
}

.fill-gold {
  fill: #00994d;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.font-bold,
.font-semibold {
  font-weight: 700;
}

.font-normal {
  font-weight: 400;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.uppercase {
  text-transform: uppercase;
}

.shadow-card,
.shadow-gold {
  box-shadow: 0 10px 30px rgba(2, 166, 83, 0.16);
}

input,
select,
textarea,
.h-14 {
  border-radius: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 3.5rem;
  border: 1px solid #dfe9e4;
  background: #ffffff;
  color: #102018;
  outline: none;
}

input::-webkit-input-placeholder {
  color: #7a8a82;
}

input::placeholder {
  color: #7a8a82;
}

button[type='submit'],
.bg-money-gradient.text-primary-foreground {
  border: 0;
  color: #ffffff;
}

.disabled\:opacity-50:disabled,
button:disabled {
  opacity: 0.55;
}

.pointer-events-none {
  pointer-events: none;
}

.z-50 {
  z-index: 50;
}

.overflow-hidden {
  overflow: hidden;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.min-w-0 {
  min-width: 0;
}

.shrink-0 {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
