/* STRICT COLOR SCHEME MAP:
   Background: #F7FBFF
   Primary: #0077B6
   Secondary / Warning / Highlights: #FF8A5B
   Dark Text & Accent: #03045E
*/

:root {
  --color-bg: #F7FBFF;
  --color-primary: #0077B6;
  --color-accent: #FF8A5B;
  --color-dark: #03045E;
}

body {
  background-color: var(--color-bg);
  color: var(--color-dark);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

input, select, textarea, button {
  user-select: auto;
}

/* Scrollbar customization */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #F7FBFF;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 119, 182, 0.4);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0077B6;
}

/* Category Badge Styling */
.badge-shoes {
  background-color: rgba(0, 119, 182, 0.15);
  color: #0077B6;
  border: 1px solid rgba(0, 119, 182, 0.3);
}

.badge-food {
  background-color: rgba(255, 138, 91, 0.2);
  color: #03045E;
  border: 1px solid rgba(255, 138, 91, 0.4);
}

.badge-clothes {
  background-color: rgba(3, 4, 94, 0.12);
  color: #03045E;
  border: 1px solid rgba(3, 4, 94, 0.25);
}

.badge-others {
  background-color: rgba(255, 138, 91, 0.15);
  color: #FF8A5B;
  border: 1px solid rgba(255, 138, 91, 0.4);
}

/* Pulse animation for high spending warning */
@keyframes warningPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 138, 91, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 138, 91, 0);
  }
}

.tip-warning-active {
  animation: warningPulse 2s infinite;
}