@import "https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap";
/* [project]/app/globals.css [app-client] (css) */
:root {
  --bg: #f8f5ec;
  --panel: #fffdf7;
  --text: #1f2a24;
  --muted: #5c665f;
  --accent: #0b7f6d;
  --accent-2: #f18f3b;
  --danger: #bf3f3f;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

body {
  background: radial-gradient(1200px 600px at 5% -10%, #0b7f6d33, transparent 65%), radial-gradient(800px 500px at 95% 0%, #f18f3b3d, transparent 70%), var(--bg);
  color: var(--text);
  min-height: 100vh;
  margin: 0;
  font-family: Space Grotesk, sans-serif;
}

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

.page {
  max-width: 1040px;
  margin: 0 auto;
  padding: 28px 20px 42px;
  animation: .45s ease-out reveal;
}

.page.wide {
  max-width: 1240px;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid #1f2a241a;
  padding: 18px;
  box-shadow: 0 10px 24px #1f2a240f;
}

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

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 720px) {
  .grid.cols-2 {
    grid-template-columns: 1fr;
  }
}

input, textarea, select, button {
  width: 100%;
  font: inherit;
  background: #fff;
  border: 1px solid #1f2a2438;
  border-radius: 10px;
  padding: 10px 12px;
}

button {
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 700;
}

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

button.secondary, .btn.secondary {
  color: var(--text);
  background: #e6ece8;
}

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

.badge {
  border-radius: 999px;
  align-items: center;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
}

.badge.scheduled, .badge.confirmed, .badge.delivered {
  color: #0b7f6d;
  background: #0b7f6d24;
}

.badge.sent {
  color: #4f5852;
  background: #5c665f33;
}

.badge.rescheduled {
  color: #9b561f;
  background: #f18f3b33;
}

.badge.cancelled {
  color: #8e2a2a;
  background: #bf3f3f2e;
}

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

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

.topbar {
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  display: flex;
}

.cta {
  width: auto;
  padding: 10px 16px;
}

.error {
  color: #8e2a2a;
  margin-top: 10px;
  font-weight: 600;
}

.small {
  color: var(--muted);
  font-size: 13px;
}

.top-actions {
  gap: 10px;
  display: flex;
}

.template-card {
  padding: 14px;
}

.template-header {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.public-page {
  max-width: 760px;
}

.public-card {
  gap: 14px;
  display: grid;
}

.mode-switch {
  gap: 8px;
  display: flex;
}

.login-page {
  place-items: center;
  max-width: 560px;
  min-height: 90vh;
  display: grid;
}

.login-card {
  gap: 12px;
  width: 100%;
  display: grid;
}

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