/* [project]/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  color: #1c1c1c;
  background: #f6f4ef;
  font-family: IBM Plex Sans, Segoe UI, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

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

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

header {
  background: #faf8f2;
  border-bottom: 1px solid #e1ddd4;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  display: flex;
}

nav a {
  margin-right: 16px;
  font-weight: 600;
}

.card {
  background: #fff;
  border: 1px solid #e1ddd4;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px #0000000f;
}

.grid {
  gap: 16px;
  display: grid;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

button {
  color: #fff;
  cursor: pointer;
  background: #1c4f3f;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 600;
}

button.secondary {
  color: #1c1c1c;
  background: #e1ddd4;
}

input, select {
  border: 1px solid #d5d0c5;
  border-radius: 8px;
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
}

form {
  gap: 12px;
  display: grid;
}

.badge {
  background: #f3efe6;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.table {
  border-collapse: collapse;
  width: 100%;
}

.table th, .table td {
  text-align: left;
  border-bottom: 1px solid #e1ddd4;
  padding: 10px;
  font-size: 14px;
}

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