/* [project]/myproject/app/globals.css [app-client] (css) */
:root {
  --bg: #f6f3ec;
  --card: #fff;
  --ink: #17221d;
  --muted: #66736c;
  --accent: #0d6b4f;
  --accent2: #e8f2ed;
  --danger: #9e2f2f;
  --line: #d9dedb;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--ink);
  margin: 0;
  font: 16px / 1.5 system-ui, -apple-system, Segoe UI, sans-serif;
}

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

button, input, textarea, select {
  font: inherit;
}

.shell {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

.nav {
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  display: flex;
}

.navlinks {
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
}

.brand {
  font-size: 1.15rem;
  font-weight: 800;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 8px 24px #0000000a;
}

.grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  display: grid;
}

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

.btn {
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  border: 0;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  padding: 11px 16px;
  font-weight: 700;
  display: inline-flex;
}

.btn.secondary {
  background: var(--accent2);
  color: var(--accent);
}

.btn.danger {
  background: var(--danger);
}

.btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.field {
  gap: 6px;
  display: grid;
}

.field input, .field textarea, .field select {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  width: 100%;
  padding: 11px 12px;
}

.muted {
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
}

.subject {
  font-size: clamp(1.3rem, 4vw, 2.25rem);
  font-weight: 750;
  line-height: 1.3;
}

.row {
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  display: flex;
}

.between {
  justify-content: space-between;
}

.pill {
  background: var(--accent2);
  color: var(--accent);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: .85rem;
  font-weight: 700;
}

.error {
  color: var(--danger);
  background: #f8e6e6;
  border-radius: 10px;
  padding: 10px;
}

.success {
  background: var(--accent2);
  color: var(--accent);
  border-radius: 10px;
  padding: 10px;
}

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

th, td {
  text-align: left;
  border-bottom: 1px solid var(--line);
  padding: 10px;
}

iframe {
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 12px;
  width: 100%;
}

@media (max-width: 640px) {
  .shell {
    padding: 12px;
  }

  .nav {
    align-items: flex-start;
  }

  .card {
    padding: 16px;
  }

  .hide-mobile {
    display: none;
  }
}

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