/* [project]/apps/web/app/globals.css [app-client] (css) */
@layer theme {
  :root, :host {
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
      "Noto Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
      "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}

@layer base {
  *, :after, :before, ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  html, :host {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(--default-font-family, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }

  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }

  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }

  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }

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

  b, strong {
    font-weight: bolder;
  }

  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }

  small {
    font-size: 80%;
  }

  sub, sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
  }

  sub {
    bottom: -.25em;
  }

  sup {
    top: -.5em;
  }

  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }

  :-moz-focusring:where(:not(iframe)) {
    outline: auto;
  }

  progress {
    vertical-align: baseline;
  }

  summary {
    display: list-item;
  }

  ol, ul, menu {
    list-style: none;
  }

  img, svg, video, canvas, audio, iframe, embed, object {
    vertical-align: middle;
    display: block;
  }

  img, video {
    max-width: 100%;
    height: auto;
  }

  button, input, select, optgroup, textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }

  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }

  ::file-selector-button {
    margin-inline-end: 4px;
  }

  ::placeholder {
    opacity: 1;
  }

  @supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentColor;
    }

    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }

  textarea {
    resize: vertical;
  }

  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }

  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }

  ::-webkit-datetime-edit {
    display: inline-flex;
  }

  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }

  ::-webkit-datetime-edit {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-year-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-month-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-day-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-hour-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-minute-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-second-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-millisecond-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }

  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }

  :-moz-ui-invalid {
    box-shadow: none;
  }

  button, input:where([type="button"], [type="reset"], [type="submit"]) {
    appearance: button;
  }

  ::file-selector-button {
    appearance: button;
  }

  ::-webkit-inner-spin-button {
    height: auto;
  }

  ::-webkit-outer-spin-button {
    height: auto;
  }

  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}

@layer components;

@layer utilities {
  .visible {
    visibility: visible;
  }

  .sr-only {
    clip-path: inset(50%);
    white-space: nowrap;
    border-width: 0;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    position: absolute;
    overflow: hidden;
  }

  .hidden {
    display: none;
  }

  .lowercase {
    text-transform: lowercase;
  }
}

:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  color: #17211b;
  background: #f5f7f4;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

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

button {
  color: #fff;
  cursor: pointer;
  background: #176b48;
  border: 0;
  border-radius: .65rem;
  padding: .7rem 1rem;
  font-weight: 700;
}

button.secondary {
  color: #284438;
  background: #fff;
  border: 1px solid #d9e0dc;
}

.secondary-link {
  color: #284438;
  background: #fff;
  border: 1px solid #d9e0dc;
  border-radius: .65rem;
  padding: .7rem 1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}

.secondary-link.compact {
  padding: .45rem .7rem;
}

.header-actions {
  align-items: center;
  gap: .65rem;
  display: flex;
}

input, select, textarea {
  color: #17211b;
  background: #fff;
  border: 1px solid #cad5cf;
  border-radius: .65rem;
  min-width: 0;
  padding: .7rem .8rem;
}

.app-shell {
  max-width: 1120px;
  margin: auto;
  padding: 2rem 1.25rem 5rem;
}

header {
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
}

h1, h2, p {
  margin-top: 0;
}

h1 {
  letter-spacing: -.035em;
  margin-bottom: .2rem;
}

h2 {
  margin-bottom: .25rem;
}

.eyebrow {
  color: #176b48;
  letter-spacing: .14em;
  margin-bottom: .3rem;
  font-size: .72rem;
  font-weight: 800;
}

.muted, .empty p {
  color: #66736c;
}

.form-error {
  color: #9b2929;
  margin: 0;
  font-weight: 700;
}

.card {
  background: #fffffff0;
  border: 1px solid #dde4e0;
  border-radius: 1rem;
  box-shadow: 0 10px 30px #1f372b0d;
}

.calendar-toolbar {
  text-align: center;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
  display: flex;
}

.calendar-toolbar p {
  margin: 0;
}

.calendar {
  overflow: hidden;
}

.calendar-weekdays, .calendar-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  min-width: 700px;
  display: grid;
}

.calendar-weekdays {
  color: #52645a;
  text-align: center;
  background: #eef3f0;
  border-bottom: 1px solid #dde4e0;
  font-size: .78rem;
  font-weight: 800;
}

.calendar-weekdays span {
  padding: .65rem .25rem;
}

.calendar-grid {
  margin: 0;
  padding: 0;
  list-style: none;
}

.calendar-day {
  border-bottom: 1px solid #edf0ee;
  border-right: 1px solid #edf0ee;
  min-height: 8.5rem;
  padding: .55rem;
}

.calendar-day.outside {
  color: #9aa49e;
  background: #fafbfa;
}

.calendar-day > time {
  margin-bottom: .4rem;
  font-size: .8rem;
  font-weight: 800;
  display: block;
}

.calendar-day ul {
  gap: .35rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.calendar-event {
  background: #e8f5ee;
  border-left: 3px solid #176b48;
  border-radius: .35rem;
  padding: .4rem;
  font-size: .72rem;
  display: grid;
}

.calendar-event.project-start {
  background: #edf2ff;
  border-color: #4969b2;
}

.calendar-event.project-target {
  background: #fff3df;
  border-color: #ae6b15;
}

.calendar-event span {
  color: #5f6c65;
  margin-top: .15rem;
}

.calendar-loading {
  opacity: .65;
  height: 32rem;
  margin-top: 1rem;
}

.toolbar {
  margin-bottom: 1.25rem;
  padding: 1rem;
}

.toolbar form {
  gap: .65rem;
  display: flex;
}

.toolbar {
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  display: grid;
}

.toolbar input {
  flex: 1;
}

.dashboard {
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  margin-bottom: 1.25rem;
  display: grid;
}

.team {
  grid-template-columns: minmax(180px, .65fr) 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
  display: grid;
}

.notification-heading, .notification-list li {
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  display: flex;
}

.notifications {
  margin-bottom: 1.25rem;
  padding: 1rem;
}

.notification-list {
  gap: .75rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.notification-list li {
  border: 1px solid #dde4e0;
  border-radius: .75rem;
  padding: 1rem;
}

.notification-list li.unread {
  background: #eef8f3;
  border-color: #8bc4aa;
}

.notification-list p {
  margin: .35rem 0;
}

.notification-list time {
  color: #66736c;
  font-size: .8rem;
}

.notification-empty {
  text-align: center;
  padding: 1.5rem 0 .5rem;
}

.team ul {
  gap: .5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.team li, .team form {
  align-items: center;
  gap: .65rem;
  display: flex;
}

.team li {
  border-bottom: 1px solid #edf0ee;
  padding-bottom: .5rem;
}

.member-avatar {
  color: #14623f;
  background: #d8f3e5;
  border-radius: 50%;
  flex: 0 0 2rem;
  justify-content: center;
  align-items: center;
  height: 2rem;
  font-weight: 800;
  display: flex;
}

.member-identity {
  flex: 1;
  display: grid;
}

.member-identity small, .member-role {
  color: #66736c;
}

.member-role {
  text-transform: capitalize;
}

.agents {
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
  display: grid;
}

.agent-list {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .65rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.agent-list li, .agent-empty {
  border: 1px solid #edf0ee;
  border-radius: .75rem;
  padding: .75rem;
}

.agent-list li div {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.agent-list p {
  margin: .45rem 0;
}

.agent-list small {
  color: #66736c;
}

.agent-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem;
  display: grid;
}

.agent-form button {
  justify-self: start;
}

.agent-assignment summary {
  color: #66736c;
  cursor: pointer;
  font-size: .85rem;
}

.agent-assignment ul {
  flex-wrap: wrap;
  gap: .4rem;
  margin: .6rem 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.agent-assignment li {
  background: #e7ece9;
  border: 0;
  border-radius: 999px;
  padding: .3rem .55rem;
  font-size: .8rem;
  display: block;
}

.agent-assignment form {
  gap: .5rem;
  display: flex;
}

.metric {
  gap: .25rem;
  padding: 1rem;
  display: grid;
}

.metric span, .search-summary {
  color: #66736c;
}

.metric strong {
  font-size: 1.75rem;
}

.clear-search {
  color: #176b48;
  align-self: center;
  padding: .5rem;
  font-weight: 700;
}

.search-summary {
  margin-bottom: 1rem;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

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

.project {
  padding: 1.15rem;
}

.task-form {
  grid-template-columns: 1fr auto auto;
  gap: .5rem;
  margin: 1rem 0;
  display: grid;
}

.task-list {
  gap: .55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.task-list li {
  border-top: 1px solid #edf0ee;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .65rem;
  padding-top: .65rem;
  display: grid;
}

.task-item {
  flex-direction: column;
  align-items: stretch !important;
}

.task-summary, .task-summary form {
  align-items: center;
  gap: .75rem;
  display: flex;
}

.task-summary strong {
  flex: 1;
}

.task-summary select {
  width: auto;
}

.compact {
  padding: .45rem .65rem;
}

.comments summary {
  color: #66736c;
  cursor: pointer;
  font-size: .85rem;
}

.comments ul {
  gap: .5rem;
  margin: .75rem 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.comments li {
  background: var(--surface);
}

@supports (color: color-mix(in lab, red, red)) {
  .comments li {
    background: color-mix(in srgb, var(--surface) 80%, var(--brand) 20%);
  }
}

.comments li {
  display: block;
}

.comments p {
  white-space: pre-wrap;
  margin: .25rem 0 0;
}

.comment-form {
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: .5rem;
  display: grid;
}

.comment-form textarea {
  resize: vertical;
}

.status, .priority {
  text-transform: capitalize;
  background: #e7ece9;
  border-radius: 999px;
  padding: .25rem .45rem;
  font-size: .7rem;
}

.status.done {
  color: #14623f;
  background: #d8f3e5;
}

.status.in_progress {
  color: #7c5510;
  background: #fff0c7;
}

.priority.high, .priority.urgent {
  color: #9b2929;
  background: #ffe5e2;
}

.empty {
  text-align: center;
  max-width: 720px;
  margin: 3rem auto;
  padding: 2rem;
}

.auth-shell {
  background: radial-gradient(circle at top, #dceee3, #f5f7f4 50%);
  place-items: center;
  min-height: 100vh;
  padding: 1rem;
  display: grid;
}

@media (max-width: 720px) {
  .team, .toolbar {
    grid-template-columns: 1fr;
  }

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

  .team li {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .team form {
    width: 100%;
  }

  .team form select {
    flex: 1;
  }

  .agent-form {
    grid-template-columns: 1fr;
  }
}

.auth-card {
  gap: 1rem;
  width: min(100%, 420px);
  padding: 2rem;
  display: grid;
}

.auth-card label {
  gap: .4rem;
  font-weight: 700;
  display: grid;
}

@media (max-width: 620px) {
  .app-shell {
    padding: 1.25rem .75rem;
  }

  .calendar-toolbar {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    display: grid;
  }

  .calendar-toolbar div {
    grid-area: 1 / 1 / auto / -1;
  }

  .calendar-toolbar .secondary-link {
    text-align: center;
  }

  .task-form {
    grid-template-columns: 1fr auto;
  }

  .dashboard {
    grid-template-columns: 1fr 1fr;
  }

  .toolbar {
    grid-template-columns: 1fr;
  }

  .task-form input {
    grid-column: 1 / -1;
  }

  .task-list li {
    grid-template-columns: 1fr auto;
  }

  .task-list .status {
    grid-column: 1 / -1;
    width: fit-content;
  }
}

.form-success {
  color: #176b48;
  margin: 0;
  font-weight: 700;
}

button:disabled {
  cursor: wait;
  opacity: .65;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.resources {
  border-top: 1px solid #edf0ee;
  margin-top: .75rem;
  padding-top: .75rem;
}

.resources > summary {
  color: #345247;
  cursor: pointer;
  font-weight: 700;
}

.resource-empty {
  color: #66736c;
  margin: .75rem 0;
  font-size: .85rem;
}

.resource-list {
  gap: .5rem;
  margin: .75rem 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.resource-list li {
  background: #f6f9f7;
  border: 1px solid #e5ebe7;
  border-radius: .65rem;
  justify-content: space-between;
  align-items: center;
  padding: .65rem;
  display: flex;
}

.resource-list li > div {
  gap: .15rem;
  min-width: 0;
  display: grid;
}

.resource-list a {
  color: #176b48;
  overflow-wrap: anywhere;
  font-weight: 700;
}

.resource-list small {
  color: #66736c;
  overflow-wrap: anywhere;
}

.resource-kind {
  color: #66736c;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .65rem;
  font-weight: 800;
}

.delete-resource {
  align-items: center;
  gap: .5rem;
  display: flex;
}

.resource-forms {
  gap: .75rem;
  margin-top: .75rem;
  display: grid;
}

.resource-forms form {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr) auto;
  align-items: end;
  gap: .5rem;
  display: grid;
}

.resource-forms label {
  gap: .3rem;
  font-size: .8rem;
  font-weight: 700;
  display: grid;
}

.resource-forms details {
  border: 1px dashed #cad5cf;
  border-radius: .65rem;
  padding: .65rem;
}

.resource-forms details summary {
  cursor: pointer;
  font-size: .85rem;
  font-weight: 700;
}

.resource-forms details form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resource-forms .form-error, .resource-forms .form-success {
  grid-column: 1 / -1;
}

@media (max-width: 620px) {
  .resource-forms form, .resource-forms details form {
    grid-template-columns: 1fr;
  }

  .resource-list li {
    flex-direction: column;
    align-items: start;
  }
}

/*# sourceMappingURL=apps_web_app_globals_1lkgh9-.css.map*/