@import "https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&display=swap";
/* [project]/app/globals.css [app-client] (css) */
:root {
  --ink: #17211f;
  --muted: #6d7774;
  --line: #dce3df;
  --cream: #f6f5f0;
  --surface: #fffefa;
  --mint: #d7f0df;
  --green: #12673e;
  --orange: #d95c26;
  --shadow: 0 12px 30px #192b2514;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--cream);
}

body {
  color: var(--ink);
  background: radial-gradient(circle at 95% 0%, #e9f5e8 0, transparent 25rem), var(--cream);
  margin: 0;
  font: 14px / 1.5 Manrope, Arial, sans-serif;
}

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

button {
  cursor: pointer;
}

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

.shell {
  max-width: 1760px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 30px 36px;
}

.topbar {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  height: 76px;
  display: flex;
}

.brand {
  color: var(--ink);
  letter-spacing: -.7px;
  background: none;
  border: 0;
  align-items: center;
  gap: 9px;
  padding: 0;
  font-size: 18px;
  font-weight: 800;
  display: flex;
}

.brand b {
  color: var(--muted);
  font-size: 14px;
}

.brand-mark {
  background: var(--ink);
  color: #fff;
  border-radius: 9px;
  place-items: center;
  width: 29px;
  height: 29px;
  font: 700 15px Georgia, serif;
  display: grid;
}

.repo-pill {
  color: #414b48;
  background: #eff2ee;
  border-radius: 99px;
  align-items: center;
  gap: 7px;
  margin-right: auto;
  padding: 7px 11px;
  font: 12px DM Mono, monospace;
  display: flex;
}

.repo-dot {
  background: #26a269;
  border-radius: 50%;
  width: 7px;
  height: 7px;
}

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

.dirty {
  color: var(--orange) !important;
}

.clean {
  color: #198754 !important;
}

.top-actions {
  align-items: center;
  gap: 9px;
  display: flex;
}

.icon-button, .quiet-button, .text-button, .close {
  color: #55615c;
  background: none;
  border: 0;
}

.icon-button {
  border: 1px solid var(--line);
  border-radius: 9px;
  width: 37px;
  height: 37px;
  font-size: 17px;
}

.primary {
  background: var(--green);
  color: #fff;
  border: 1px solid #155837;
  border-radius: 9px;
  padding: 9px 14px;
  font-weight: 700;
  box-shadow: 0 3px #0a4427;
}

.primary:active {
  transform: translateY(2px);
  box-shadow: 0 1px #0a4427;
}

.workspace-heading {
  justify-content: space-between;
  align-items: end;
  padding: 37px 0 24px;
  display: flex;
}

.eyebrow {
  color: #4c8063;
  letter-spacing: 1.15px;
  margin: 0 0 5px;
  font: 700 10px DM Mono, monospace;
}

.workspace-heading h1 {
  letter-spacing: -1.25px;
  margin: 0;
  font-size: 30px;
}

.subtitle {
  color: var(--muted);
  margin: 5px 0 0;
}

.clock {
  justify-items: end;
  gap: 3px;
  padding-bottom: 4px;
  display: grid;
}

.clock span {
  color: var(--muted);
  letter-spacing: .8px;
  font: 10px DM Mono, monospace;
}

.clock strong {
  font: 500 13px DM Mono, monospace;
}

.control-row {
  border: 1px solid var(--line);
  background: #fffffcb3;
  border-radius: 13px;
  align-items: center;
  gap: 10px;
  padding: 12px;
  display: flex;
}

.search {
  min-width: 190px;
  color: var(--muted);
  flex: 1;
  align-items: center;
  gap: 7px;
  display: flex;
}

.search input {
  background: none;
  border: 0;
  outline: 0;
  width: 100%;
}

.select-wrap {
  color: var(--muted);
  align-items: center;
  gap: 8px;
  font-size: 12px;
  display: flex;
}

.select-wrap select {
  color: var(--ink);
  background: none;
  border: 0;
  outline: 0;
}

.quiet-button {
  border-radius: 7px;
  padding: 7px 9px;
  font-weight: 600;
}

.quiet-button:hover, .text-button:hover {
  color: var(--ink);
  background: #edf1ed;
}

.board-count {
  color: var(--muted);
  white-space: nowrap;
  margin-left: auto;
  font-size: 12px;
}

.notice {
  color: #587065;
  margin: 13px 2px 15px;
  font-size: 12px;
}

.notice:first-letter {
  color: #2c9c62;
}

.board {
  grid-template-columns: repeat(6, minmax(235px, 1fr));
  gap: 14px;
  padding-bottom: 12px;
  display: grid;
  overflow-x: auto;
}

.column {
  background: #e0e6e161;
  border-radius: 13px;
  min-height: 570px;
  padding: 0 0 12px;
}

.column-head {
  justify-content: space-between;
  padding: 15px 14px 12px;
  display: flex;
}

.column-head > div {
  grid-template-columns: 20px 1fr;
  align-items: center;
  column-gap: 8px;
  display: grid;
}

.column-head h2 {
  letter-spacing: -.35px;
  margin: 0;
  font-size: 14px;
}

.column-head small {
  color: var(--muted);
  grid-column: 2;
  font-size: 10px;
}

.column-icon {
  color: #526c5d;
  background: #e3e9e4;
  border-radius: 6px;
  grid-row: 1 / span 2;
  place-items: center;
  width: 20px;
  height: 20px;
  font-size: 12px;
  display: grid;
}

.column-in-progress {
  color: #317294;
  background: #daebf6;
}

.column-done {
  color: #1e804a;
  background: #d8efdf;
}

.column-pr {
  color: #b85830;
  background: #f9e4d8;
}

.column-pr-complete {
  color: #6d4c96;
  background: #e7dff6;
}

.column-count {
  color: #64716b;
  background: #e5e9e6;
  border-radius: 99px;
  place-items: center;
  width: 22px;
  height: 22px;
  font: 11px DM Mono, monospace;
  display: grid;
}

.cards {
  gap: 10px;
  padding: 0 9px;
  display: grid;
}

.task-card {
  background: var(--surface);
  border: 1px solid #e1e6e1;
  border-radius: 11px;
  padding: 13px;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 1px 1px #00000005;
}

.task-card:hover, .task-card:focus {
  box-shadow: var(--shadow);
  outline: 0;
  transform: translateY(-2px);
}

.card-top {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.priority {
  text-transform: capitalize;
  border-radius: 99px;
  padding: 2px 7px;
  font: 600 10px DM Mono, monospace;
  display: inline-flex;
}

.priority-low {
  color: #68736d;
  background: #edf0ed;
}

.priority-medium {
  color: #657012;
  background: #eef1ca;
}

.priority-high {
  color: #9b5416;
  background: #ffe4b8;
}

.priority-urgent {
  color: #ad3926;
  background: #fbd8d2;
}

.task-id {
  color: #99a39d;
  font: 10px DM Mono, monospace;
}

.task-card h3 {
  letter-spacing: -.2px;
  margin: 10px 0;
  font-size: 13px;
  line-height: 1.4;
}

.labels {
  flex-wrap: wrap;
  gap: 4px;
  display: flex;
}

.labels span, .tag {
  color: #67736d;
  background: #f0f2f0;
  border-radius: 5px;
  padding: 2px 6px;
  font: 10px DM Mono, monospace;
}

.schedule, .branch {
  color: #7a8781;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 9px 0 0;
  font: 10px DM Mono, monospace;
  overflow: hidden;
}

.schedule {
  color: #97621f;
}

.pr-state {
  color: #467b62;
  margin-top: 8px;
  font: 600 10px DM Mono, monospace;
  text-decoration: none;
  display: inline-block;
}

.pr-state.merged {
  color: #75599c;
}

.pr-state.closed {
  color: #af4d34;
}

.task-card footer {
  justify-content: space-between;
  align-items: center;
  margin-top: 13px;
  display: flex;
}

.avatars {
  display: flex;
}

.avatars span, .agent-avatar {
  border: 2px solid var(--surface);
  color: #356274;
  background: #d9ebf3;
  border-radius: 50%;
  place-items: center;
  width: 21px;
  height: 21px;
  font: 700 9px DM Mono, monospace;
  display: grid;
}

.avatars span + span {
  color: #8c5938;
  background: #ece1d4;
  margin-left: -5px;
}

.run-status {
  color: #78827d;
  align-items: center;
  gap: 4px;
  font: 10px DM Mono, monospace;
  display: inline-flex;
}

.run-status i {
  background: #1e9b60;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  box-shadow: 0 0 0 3px #d7f1e2;
}

.run-status.scheduled {
  color: #9c6a20;
}

.run-status.failed, .run-status.blocked {
  color: #bd472d;
}

.run-status.completed {
  color: #34875d;
}

.add-card {
  color: #627069;
  background: none;
  border: 1px dashed #bec9c1;
  border-radius: 8px;
  width: calc(100% - 20px);
  margin: 10px;
  padding: 8px;
  font-size: 12px;
}

.overlay {
  z-index: 20;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background: #1a272047;
  justify-content: flex-end;
  display: flex;
  position: fixed;
  inset: 0;
}

.drawer {
  background: #fffefa;
  width: min(620px, 100%);
  min-height: 100vh;
  padding: 27px;
  overflow: auto;
  box-shadow: -12px 0 38px #14221a29;
}

.drawer-head, .modal-head, .section-title {
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  display: flex;
}

.drawer-head h2, .modal h2 {
  letter-spacing: -.9px;
  margin: 0;
  font-size: 23px;
  line-height: 1.25;
}

.close {
  font-size: 27px;
  line-height: 20px;
}

.drawer-meta {
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  padding: 17px 0;
  display: flex;
}

.move-row {
  color: var(--muted);
  align-items: center;
  gap: 7px;
  padding: 13px 0;
  font-size: 12px;
  display: flex;
}

.move-row span {
  margin-right: auto;
}

.move-row button, .move-row select {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 7px;
  padding: 5px 8px;
}

.tabs {
  border-bottom: 1px solid var(--line);
  gap: 20px;
  display: flex;
}

.tabs button {
  color: var(--muted);
  background: none;
  border: 0;
  border-bottom: 2px solid #0000;
  padding: 10px 0 9px;
  font-size: 12px;
  font-weight: 700;
}

.tabs button.active {
  color: var(--green);
  border-color: var(--green);
}

.drawer-content {
  gap: 21px;
  padding: 22px 0;
  display: grid;
}

.drawer-content h3 {
  margin: 0 0 7px;
  font-size: 13px;
}

.drawer-content p {
  color: #596660;
  margin: 0;
  font-size: 13px;
}

.drawer-content textarea, .modal textarea {
  resize: vertical;
  width: 100%;
  min-height: 88px;
}

.drawer-content textarea {
  margin-top: 5px;
}

.git-summary, .run-panel, .pr-panel {
  border: 1px solid var(--line);
  background: #fafbf8;
  border-radius: 10px;
  padding: 14px;
}

.git-summary div {
  color: var(--muted);
  justify-content: space-between;
  gap: 20px;
  padding: 5px 0;
  font-size: 12px;
  display: flex;
}

.git-summary code, .confirmation code {
  color: #335a45;
  font: 11px DM Mono, monospace;
}

.run-panel p {
  margin-bottom: 12px;
}

.run-actions {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  display: flex;
}

.run-actions label {
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 7px;
  align-items: center;
  gap: 5px;
  padding: 5px 7px;
  font-size: 10px;
  display: flex;
}

.run-actions input {
  max-width: 145px;
  color: var(--ink);
  border: 0;
  font-size: 11px;
}

.pr-panel {
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 6px;
  display: grid;
}

.pr-panel p {
  grid-column: 1 / -1;
}

.assignment {
  border-bottom: 1px solid var(--line);
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  display: flex;
}

.assignment > div {
  display: grid;
}

.assignment small, .activity small {
  color: var(--muted);
  font-size: 10px;
}

.available {
  color: #2b9460;
  margin-left: auto;
  font-size: 11px;
}

.limit {
  background: #f5eee2;
  border-radius: 8px;
  padding: 10px;
  color: #796447 !important;
}

.timeline {
  gap: 0;
}

.activity {
  gap: 11px;
  min-height: 51px;
  display: flex;
  position: relative;
}

.activity:not(:last-child):before {
  content: "";
  background: #dfe6df;
  width: 1px;
  position: absolute;
  top: 12px;
  bottom: -5px;
  left: 5px;
}

.activity-dot {
  z-index: 1;
  background: #8a9b92;
  border-radius: 50%;
  width: 11px;
  height: 11px;
  margin-top: 4px;
}

.activity-dot.agent {
  background: #438bb0;
}

.activity-dot.git {
  background: #c8683e;
}

.activity > div {
  align-content: start;
  display: grid;
}

.file {
  color: #4c6458;
  background: #f1f4f1;
  border-radius: 5px;
  margin-top: 5px;
  padding: 6px 8px;
  font-size: 11px;
  display: block;
}

.modal {
  background: var(--surface);
  width: min(520px, 100% - 28px);
  max-height: calc(100vh - 28px);
  box-shadow: var(--shadow);
  border: 1px solid #e2e7e2;
  border-radius: 15px;
  align-self: center;
  padding: 24px;
  overflow: auto;
}

.modal-copy {
  color: var(--muted);
  margin: 11px 0 18px;
}

.modal label {
  color: #47544e;
  gap: 6px;
  margin: 13px 0;
  font-size: 12px;
  font-weight: 700;
  display: grid;
}

.modal input, .modal textarea, .modal select {
  background: #fff;
  border: 1px solid #cfd8d1;
  border-radius: 7px;
  outline-color: #4a996b;
  padding: 9px 10px;
  font-weight: 400;
}

.modal textarea {
  font-size: 13px;
}

.modal-actions {
  justify-content: flex-end;
  align-items: center;
  gap: 9px;
  margin-top: 21px;
  display: flex;
}

.helper {
  color: var(--muted);
  margin: 4px 0 16px;
  font-size: 11px;
}

.integration {
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 16px;
}

.integration h3 {
  margin: 0 0 7px;
  font-size: 13px;
}

.integration div {
  border-bottom: 1px solid #edf0ed;
  grid-template-columns: 1fr 1.5fr auto;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 12px;
  display: grid;
}

.unavailable {
  color: #bb5638;
}

.repo-list {
  border: 1px solid var(--line);
  border-radius: 9px;
  overflow: hidden;
}

.repo-list button {
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  background: #fff;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  display: grid;
}

.repo-list button:last-child {
  border-bottom: 0;
}

.repo-list button:hover {
  background: #f5f8f4;
}

.repo-list button span:nth-child(2) {
  display: grid;
}

.repo-list small {
  color: var(--muted);
  font: 10px DM Mono, monospace;
}

.folder {
  color: #c58332;
}

.branch-small {
  color: var(--muted);
  font: 10px DM Mono, monospace;
}

.confirmation {
  background: #f2f6f2;
  border-radius: 9px;
  gap: 10px;
  padding: 12px;
  display: grid;
}

.confirmation span {
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  display: flex;
}

@media (max-width: 760px) {
  .shell {
    padding: 0 15px 25px;
  }

  .topbar {
    height: 65px;
  }

  .repo-pill {
    display: none;
  }

  .workspace-heading {
    align-items: start;
    padding: 25px 0 18px;
  }

  .workspace-heading h1 {
    font-size: 25px;
  }

  .subtitle {
    font-size: 12px;
  }

  .clock {
    display: none;
  }

  .control-row {
    flex-wrap: wrap;
  }

  .search {
    flex-basis: 100%;
  }

  .board-count {
    margin-left: 0;
  }

  .board {
    grid-template-columns: repeat(6, minmax(260px, 1fr));
  }

  .drawer {
    padding: 20px;
  }

  .integration div {
    grid-template-columns: 1fr auto;
  }

  .integration button {
    grid-column: 2;
  }

  .repo-list button {
    grid-template-columns: auto 1fr auto;
  }

  .branch-small {
    display: none;
  }
}

.assignment-form {
  border: 1px solid var(--line);
  background: #fafbf8;
  border-radius: 9px;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 14px;
  padding: 13px;
  display: grid;
}

.assignment-form h3, .assignment-form .helper {
  grid-column: 1 / -1;
}

.assignment-form h3 {
  margin: 0;
}

.assignment-form label {
  color: var(--muted);
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  display: grid;
}

.assignment-form select {
  border: 1px solid var(--line);
  width: 100%;
  color: var(--ink);
  background: #fff;
  border-radius: 6px;
  padding: 6px;
  font-size: 11px;
}

.assignment-form button {
  grid-column: 1 / -1;
  justify-self: start;
}

.warning {
  background: #fff0df;
  border-radius: 8px;
  padding: 10px;
  color: #93501f !important;
  margin: 8px 0 !important;
  font-size: 12px !important;
}

.artifact-output {
  border: 1px solid var(--line);
  color: #dce9e1;
  white-space: pre-wrap;
  word-break: break-word;
  background: #121a16;
  border-radius: 8px;
  max-height: 260px;
  margin: 7px 0 0;
  padding: 10px;
  font: 11px / 1.5 DM Mono, monospace;
  overflow: auto;
}

.assignment-form input {
  border: 1px solid var(--line);
  width: 100%;
  color: var(--ink);
  background: #fff;
  border-radius: 6px;
  padding: 6px;
  font-size: 11px;
}

.assignment-actions {
  gap: 2px;
  margin-left: auto;
  display: flex !important;
}

.assignment-actions .text-button {
  padding: 3px 5px;
  font-size: 11px;
}

.assignment-actions .remove {
  color: #ad422f;
}

.repository-label {
  color: #47705d;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 9px 0 0;
  font: 10px DM Mono, monospace;
  overflow: hidden;
}

.automation-setting {
  background: #f3faf5;
  border: 1px solid #cde3d4;
  border-radius: 9px;
  margin-top: 18px;
  padding: 13px;
}

.automation-setting label {
  cursor: pointer;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  display: flex;
}

.automation-setting input {
  width: auto;
  accent-color: var(--green);
  margin: 3px 0 0;
}

.automation-setting span {
  gap: 2px;
  display: grid;
}

.automation-setting small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}

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