/* [project]/app/globals.css [app-client] (css) */
:root {
  --bg: #0f0f10;
  --surface: #18181b;
  --surface2: #1f1f23;
  --surface3: #27272c;
  --border: #ffffff12;
  --border2: #ffffff21;
  --text: #f4f4f5;
  --muted: #71717a;
  --sub: #a1a1aa;
  --accent: #4f9cf9;
  --accent2: #4f9cf91f;
  --green: #22c55e;
  --green2: #22c55e1f;
  --amber: #f59e0b;
  --amber2: #f59e0b1a;
  --red: #ef4444;
  --red2: #ef44441f;
  --purple: #a78bfa;
  --purple2: #a78bfa1f;
  --teal: #2dd4bf;
  --teal2: #2dd4bf1f;
  --radius: 10px;
  --font: "Inter", sans-serif;
  --mono: "JetBrains Mono", monospace;
}

*, :before, :after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 15px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

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

button {
  font-family: var(--font);
  cursor: pointer;
}

input, select, textarea {
  font-family: var(--font);
}

.desktop-nav, .desktop-only {
  display: none;
}

.mobile-only {
  display: block;
}

.desktop-only-block {
  display: none !important;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex !important;
  }

  .desktop-only {
    align-items: center;
    display: flex !important;
  }

  .mobile-only {
    display: none !important;
  }

  .desktop-only-block {
    align-items: center;
    display: flex !important;
  }
}

@media (max-width: 767px) {
  .desktop-nav, .desktop-only, .desktop-only-block {
    display: none !important;
  }
}

.app-main {
  padding-bottom: 72px;
}

@media (min-width: 768px) {
  .app-main {
    padding-bottom: 0;
  }
}

input, select, textarea {
  font-size: 16px !important;
}

