/* WanderAI — complements Tailwind (travel / listing–style UI) */

h1, h2, h3, h4, h5 {
  font-family: "Fraunces", Georgia, serif;
}

body {
  font-family: "Figtree", system-ui, sans-serif;
}

.day-body {
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
.day-body.hidden {
  display: none;
}

.budget-bar-track {
  background-color: #E8E8E8;
  border-radius: 9999px;
  height: 8px;
  overflow: hidden;
}
.budget-bar-fill {
  height: 100%;
  border-radius: 9999px;
  transition: width 0.6s ease;
}
.budget-bar-fill.over-budget {
  background-color: #C13515;
}
.budget-bar-fill.near-budget {
  background-color: #B45309;
}
.budget-bar-fill.normal {
  background-color: #0F766E;
}

.activity-food      { border-left-color: #EA580C; }
.activity-culture   { border-left-color: #0F766E; }
.activity-transport { border-left-color: #2563EB; }
.activity-nature    { border-left-color: #15803D; }
.activity-shopping  { border-left-color: #BE185D; }
.activity-accommodation { border-left-color: #115E59; }
.activity-entertainment { border-left-color: #A16207; }

.leaflet-container {
  border-radius: 12px;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #EFEFEF;
}
::-webkit-scrollbar-thumb {
  background: #C4C4C4;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #A3A3A3;
}
