/* [project]/src/app/globals.css [app-client] (css) */
:root {
  color: #102044;
  background: #f5f7fb;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  margin: 0;
}

.dashboard-shell {
  background: #f5f7fb;
  min-height: 100vh;
  display: flex;
}

.sidebar {
  color: #fff;
  background: linear-gradient(#092448, #0d3c6c);
  flex-direction: column;
  flex: 0 0 247px;
  height: 100vh;
  padding: 24px 16px 18px;
  display: flex;
  position: sticky;
  top: 0;
}

.brand {
  color: inherit;
  align-items: center;
  gap: 12px;
  margin: 3px 10px 26px;
  font-size: 16px;
  line-height: 1.05;
  text-decoration: none;
  display: flex;
}

.brand span {
  background: #3472ec;
  border-radius: 10px;
  place-items: center;
  width: 45px;
  height: 45px;
  font-weight: 800;
  display: grid;
}

.sidebar nav {
  gap: 9px;
  display: grid;
}

.sidebar nav a {
  color: #fff;
  border-radius: 9px;
  align-items: center;
  gap: 17px;
  padding: 15px 18px;
  font-size: 15px;
  text-decoration: none;
  display: flex;
}

.sidebar nav a.active {
  background: #376ee1;
}

.sidebar nav i {
  color: #dbeafe;
  text-align: center;
  width: 17px;
  font-style: normal;
}

.sidebar-bottom {
  margin-top: auto;
}

.updated {
  color: #c5d8ef;
  background: #ffffff12;
  border: 1px solid #ffffff12;
  border-radius: 10px;
  gap: 7px;
  padding: 17px 15px;
  font-size: 12px;
  display: grid;
}

.updated strong {
  color: #fff;
  font-size: 12px;
}

.profile {
  align-items: center;
  gap: 11px;
  margin: 25px 6px 0;
  display: flex;
}

.profile > span {
  color: #14365f;
  background: #e5f0ff;
  border-radius: 50%;
  place-items: center;
  width: 43px;
  height: 43px;
  font-size: 14px;
  font-weight: 800;
  display: grid;
}

.profile p {
  margin: 0;
  line-height: 1.25;
}

.profile b, .profile small {
  display: block;
}

.profile b {
  font-size: 13px;
}

.profile small {
  color: #c5d8ef;
  margin-top: 3px;
  font-size: 11px;
}

.dashboard-content {
  width: min(100%, 1650px);
  padding: 27px 26px 46px;
}

.topbar {
  justify-content: space-between;
  align-items: start;
  gap: 24px;
  margin-bottom: 31px;
  display: flex;
}

.topbar h1 {
  color: #0d1e3d;
  letter-spacing: -.4px;
  margin: 2px 0 7px;
  font-size: 26px;
}

.topbar > div > p {
  color: #61718d;
  margin: 0;
  font-size: 15px;
}

.filters {
  gap: 10px;
  display: flex;
}

.filters label {
  background: #fff;
  border: 1px solid #dee5ef;
  border-radius: 11px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 7px;
  min-width: 190px;
  height: 56px;
  padding: 8px 12px;
  display: grid;
}

.filters label small {
  color: #697891;
  grid-column: 1 / -1;
  font-size: 10px;
}

.filters input, .filters select {
  color: #0e2041;
  background: none;
  border: 0;
  outline: 0;
  width: 100%;
  margin-top: -5px;
  font-size: 14px;
}

.filters button {
  color: #10244b;
  cursor: pointer;
  background: #fff;
  border: 1px solid #dee5ef;
  border-radius: 11px;
  height: 56px;
  padding: 0 16px;
  font-size: 14px;
}

.metric-grid {
  grid-template-columns: repeat(6, minmax(170px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
  display: grid;
}

.metric-card {
  background: #fff;
  border: 1px solid #e1e7f0;
  border-radius: 15px;
  gap: 10px;
  min-height: 144px;
  padding: 18px;
  display: flex;
  box-shadow: 0 4px 11px #0f28600a;
}

.metric-icon {
  color: #3269ed;
  background: #e9f1ff;
  border-radius: 9px;
  flex: 0 0 39px;
  place-items: center;
  height: 39px;
  display: grid;
}

.metric-icon.orange {
  color: #ed8a15;
  background: #fff2df;
}

.metric-card p {
  color: #42516b;
  white-space: nowrap;
  margin: 2px 0;
  font-size: 12px;
}

.metric-card strong {
  color: #111d37;
  font-size: 27px;
  line-height: 1.05;
}

.metric-card small {
  color: #64728a;
  margin-left: 5px;
  font-size: 11px;
}

.metric-card em {
  margin-top: 17px;
  font-size: 10px;
  font-style: normal;
  display: block;
}

.live {
  color: #14a56d;
}

.pending {
  color: #ed951e;
}

.main-grid {
  grid-template-columns: minmax(0, 1.83fr) minmax(350px, 1fr);
  gap: 16px;
  display: grid;
}

.panel {
  background: #fff;
  border: 1px solid #e0e7f0;
  border-radius: 15px;
  box-shadow: 0 5px 14px #18396908;
}

.chart-panel {
  min-height: 440px;
  padding: 20px;
}

.panel-heading {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  display: flex;
}

.panel h2 {
  color: #102044;
  margin: 0;
  font-size: 15px;
}

.panel h2 small {
  color: #70809d;
  font-weight: 400;
}

.legend {
  color: #53617b;
  align-items: center;
  gap: 9px;
  margin: 19px 0 0;
  font-size: 11px;
  display: flex;
}

.legend span {
  width: 21px;
  height: 2px;
}

.legend .blue {
  background: #2869ef;
}

.legend .purple {
  background: #8743ef;
  margin-left: 12px;
}

.frequency {
  color: #1e3763;
  border: 1px solid #dde5ef;
  border-radius: 9px;
  padding: 11px 13px;
  font-size: 13px;
}

.chart {
  height: 278px;
  margin: 24px 8px 0 0;
  display: flex;
}

.chart-y {
  color: #4c6e9c;
  flex-direction: column;
  flex: 0 0 38px;
  justify-content: space-between;
  padding-bottom: 26px;
  font-size: 10px;
  display: flex;
}

.chart-area {
  background: repeating-linear-gradient(#0000, #0000 25%, #e5ecf5 25.4%, #0000 26%);
  border-bottom: 1px dashed #dce5f0;
  flex: 1;
  justify-content: space-around;
  align-items: end;
  gap: 8px;
  padding: 0 5px 27px;
  display: flex;
}

.bar-column {
  flex: 1;
  justify-content: center;
  align-items: end;
  max-width: 75px;
  height: 100%;
  display: flex;
  position: relative;
}

.commit-bar {
  background: #e1ebfc;
  border-radius: 3px 3px 0 0;
  width: min(70%, 35px);
  min-height: 3px;
}

.bar-column span {
  color: #66758e;
  white-space: nowrap;
  font-size: 10px;
  position: absolute;
  top: calc(100% + 9px);
}

.chart-caption {
  color: #607493;
  margin: 14px 0 0;
  font-size: 11px;
}

.empty-chart {
  color: #52637d;
  text-align: center;
  place-content: center;
  gap: 8px;
  min-height: 280px;
  font-size: 13px;
  display: grid;
}

.empty-chart b {
  color: #1e3153;
}

.empty-chart small {
  color: #8997ad;
}

.right-stack {
  gap: 14px;
  display: grid;
}

.insights {
  padding: 20px;
}

.insights h2 {
  margin-bottom: 10px;
}

.insight {
  border: 1px solid;
  border-radius: 9px;
  align-items: center;
  gap: 12px;
  min-height: 57px;
  margin-top: 9px;
  padding: 9px 12px;
  display: flex;
}

.insight > b {
  color: #fff;
  border-radius: 50%;
  flex: 0 0 32px;
  place-items: center;
  height: 32px;
  display: grid;
}

.insight p {
  flex: 1;
  gap: 3px;
  margin: 0;
  display: grid;
}

.insight strong {
  color: #172443;
  font-size: 11px;
}

.insight p span {
  color: #65718a;
  font-size: 10px;
}

.insight i {
  color: #172443;
  font-style: normal;
}

.danger {
  background: #fff6f6;
  border-color: #f6d0d0;
}

.danger > b {
  background: #ed4147;
}

.amber {
  background: #fffaf1;
  border-color: #f6dbad;
}

.amber > b {
  background: #ee9217;
}

.blue-tone {
  background: #f5f8ff;
  border-color: #d2e1fd;
}

.blue-tone > b {
  background: #316df0;
}

.coverage {
  padding: 21px 20px;
}

.coverage-body {
  align-items: center;
  gap: 24px;
  margin-top: 15px;
  display: flex;
}

.donut {
  background: conic-gradient(#8a43eb 0 63%,#4c8ded 63% 88%,#17ad79 88% 97%,#9aa7ba 97%);
  border-radius: 50%;
  place-items: center;
  width: 122px;
  height: 122px;
  display: grid;
}

.donut:before {
  content: "";
  background: #fff;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  position: absolute;
}

.donut b {
  z-index: 1;
  color: #13264a;
  text-align: center;
  font-size: 22px;
}

.donut b small {
  color: #73809a;
  font-size: 10px;
  font-weight: 500;
  display: block;
}

.coverage-key {
  flex: 1;
  gap: 7px;
  display: grid;
}

.coverage-key p {
  color: #344563;
  align-items: center;
  gap: 7px;
  margin: 0;
  font-size: 10px;
  display: flex;
}

.coverage-key p b {
  color: #0f2347;
  margin-left: auto;
  font-size: 10px;
}

.dot {
  width: 17px;
  height: 3px;
}

.both {
  background: #8a43eb;
}

.ai {
  background: #4c8ded;
}

.human {
  background: #17ad79;
}

.none {
  background: #9aa7ba;
}

.coverage-key > small {
  color: #8c98ad;
  margin-top: 3px;
  font-size: 9px;
}

.open-prs {
  margin-top: 16px;
  overflow: hidden;
}

.open-prs .panel-heading {
  padding: 19px 19px 16px;
}

.open-prs .panel-heading a {
  color: #2e68ef;
  font-size: 11px;
  text-decoration: none;
}

.badge {
  color: #ef636a;
  background: #fff0f2;
  border-radius: 50%;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-left: 7px;
  font-size: 10px;
  display: inline-grid;
}

.table-wrap {
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
  font-size: 11px;
}

th {
  color: #496181;
  text-align: left;
  background: #f9fafc;
  padding: 12px;
  font-size: 10px;
  font-weight: 500;
}

td {
  color: #60718a;
  text-align: center;
  border-top: 1px solid #e7edf4;
  padding: 25px 12px;
}

@media (max-width: 1300px) {
  .metric-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .topbar {
    flex-direction: column;
  }

  .filters {
    width: 100%;
  }

  .filters label {
    flex: 1;
  }
}

@media (max-width: 920px) {
  .sidebar {
    flex-basis: 72px;
    padding: 20px 10px;
  }

  .brand {
    margin: 3px 3px 26px;
  }

  .brand b, .sidebar nav a span {
    display: none;
  }

  .sidebar nav a {
    justify-content: center;
    padding: 15px;
  }

  .sidebar-bottom {
    display: none;
  }

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

  .right-stack {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-content {
    padding: 22px 16px;
  }
}

@media (max-width: 620px) {
  .dashboard-shell {
    display: block;
  }

  .sidebar {
    flex-direction: row;
    width: 100%;
    height: auto;
    padding: 10px;
    position: static;
  }

  .brand {
    margin: 0;
  }

  .sidebar nav {
    margin-left: auto;
    display: flex;
    overflow-x: auto;
  }

  .sidebar nav a {
    padding: 10px;
  }

  .sidebar nav a.active {
    background: none;
  }

  .metric-grid, .right-stack {
    grid-template-columns: 1fr;
  }

  .filters {
    flex-wrap: wrap;
  }

  .filters button, .filters label {
    min-width: 100%;
  }

  .chart-panel {
    overflow: hidden;
  }

  .chart-area {
    min-width: 360px;
  }

  .chart {
    overflow-x: auto;
  }

  .coverage-body {
    justify-content: center;
  }

  .dashboard-content {
    width: 100%;
  }

  .topbar h1 {
    font-size: 23px;
  }
}

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