/* Global styles for JamCam app */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--light-bg);
  margin: 0;
  padding: 0;
  line-height: 1.5;
  color: var(--text-color);
}
:root {
  --primary-color: #2c7dff;
  --secondary-color: #44d9ff;
  --accent-color: #1f62dd;
  --accent-gold: #d7b56a;
  --text-color: #333;
  --light-bg: #f5f7ff;
  --card-bg: #ffffff;
  --border-color: #e1e4ec;
}
#root {
  min-height: 100vh;
  width: 100%;
}
/* Basic typography styles */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}
p {
  margin-bottom: 1rem;
}
/* Links */
a {
  text-decoration: none;
  color: inherit;
}
/* Make focus styles more visible for accessibility */
:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/*# sourceMappingURL=main.css.map*/