/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
@import url("https://unpkg.com/leaflet@1.9.4/dist/leaflet.css");

:root {
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.84);
  --panel-2: rgba(15, 23, 42, 0.72);
  --line: rgba(51, 65, 85, 0.72);
  --text: #f1f5f9;
  --muted: #94a3b8;
  --accent: #1ed660;
  --warn: #ffb347;
  --alert: #ff6b6b;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(ellipse 80% 80% at 50% -20%, rgba(30, 214, 96, 0.08), transparent),
    radial-gradient(ellipse 60% 60% at 100% 100%, rgba(30, 214, 96, 0.05), transparent),
    linear-gradient(145deg, #020617 0%, #071122 100%);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
}

button,
input,
select {
  font-family: "Inter", system-ui, sans-serif;
}

a {
  color: inherit;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

