/* src/styles.css */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: #f5f7fb;
  color: #16213b;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
.app-shell {
  min-height: 100vh;
}
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 232px;
  background: #10203a;
  color: #dce6f5;
  padding: 18px 12px;
  z-index: 5;
}
.brand {
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 6px 10px 24px;
}
.brand b {
  font-size: 23px;
  color: #fff;
}
.brand small {
  display: block;
  font-size: 10px;
  color: #aebdd2;
}
.logo {
  width: 43px;
  height: 43px;
  border: 2px solid #2f78f6;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #4d8dff;
  font-size: 25px;
}
.sidebar nav {
  display: grid;
  gap: 4px;
}
.sidebar nav a {
  color: #dce6f5;
  text-decoration: none;
  padding: 10px 11px;
  border-radius: 8px;
  font-size: 13px;
}
.sidebar nav a:hover,
.sidebar nav a.active {
  background: #263f68;
  color: #fff;
}
.sidebar nav span {
  margin-left: 8px;
}
.version {
  position: absolute;
  bottom: 18px;
  left: 22px;
  color: #8293ae;
}
.main {
  margin-left: 232px;
  min-height: 100vh;
}
.topbar {
  height: 72px;
  background: #fff;
  border-bottom: 1px solid #e6eaf1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 28px;
  gap: 18px;
  position: sticky;
  top: 0;
  z-index: 4;
}
.global-search {
  width: 310px;
  height: 40px;
  border: 1px solid #dfe5ef;
  border-radius: 8px;
  padding: 0 13px;
  font-size: 13px;
}
.user {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 12px;
}
.user small {
  display: block;
  color: #8190a7;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e4efff;
  color: #2869d8;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.page {
  padding: 28px;
}
.page-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.page-head h1 {
  font-size: 26px;
  margin: 0;
}
.page-head p {
  margin: 4px 0;
  color: #7a879d;
  font-size: 13px;
}
.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  border-radius: 8px;
  padding: 11px 15px;
  font-weight: 650;
  font-size: 13px;
  cursor: pointer;
}
.primary {
  background: #3176ec;
  color: white;
}
.secondary {
  background: white;
  color: #41516a;
  border: 1px solid #dce3ed;
}
.card {
  background: #fff;
  border: 1px solid #e5eaf1;
  border-radius: 10px;
  box-shadow: 0 2px 9px rgba(25, 42, 70, .04);
}
.kpis {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}
.kpi {
  padding: 16px;
}
.kpi small {
  display: block;
  color: #6c7890;
  text-transform: uppercase;
  font-size: 10px;
  margin-top: 8px;
}
.kpi strong {
  display: block;
  font-size: 26px;
  margin: 5px 0;
}
.kpi a {
  font-size: 10px;
  color: #3372df;
  text-decoration: none;
}
.kicon {
  float: left;
  font-size: 20px;
}
.two {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 14px;
  margin-top: 14px;
}
.bottom {
  grid-template-columns: 1.55fr .75fr;
}
.panel {
  padding: 19px;
}
.panel h2 {
  font-size: 16px;
  margin: 0 0 17px;
}
.panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.panel-title a {
  font-size: 11px;
  color: #3372df;
  text-decoration: none;
}
.bar-row {
  display: grid;
  grid-template-columns: 85px 1fr 38px;
  gap: 9px;
  align-items: center;
  margin: 14px 0;
  font-size: 11px;
  color: #59677e;
}
.track {
  height: 9px;
  background: #edf1f6;
  border-radius: 10px;
  overflow: hidden;
}
.track i {
  display: block;
  height: 100%;
  background: #3378eb;
  border-radius: 10px;
}
.bar-row b {
  font-size: 10px;
}
.priority {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  min-height: 200px;
}
.donut {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  background:
    conic-gradient(
      #ef4444 0 13%,
      #f59e0b 13% 51%,
      #fbbf24 51% 81%,
      #55bc5d 81%);
  position: relative;
}
.donut:after {
  content: "208\\A Total";
  white-space: pre;
  text-align: center;
  position: absolute;
  inset: 34px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.legend {
  font-size: 12px;
}
.legend p {
  margin: 12px 0;
}
.legend b {
  margin-left: 5px;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}
th,
td {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px solid #edf0f4;
}
th {
  color: #69768b;
  font-weight: 550;
}
td small {
  display: block;
  color: #8a96a8;
  margin-top: 4px;
}
.badge {
  padding: 5px 8px;
  border-radius: 5px;
  background: #eeeaff;
  color: #6239d8;
  font-size: 9px;
  white-space: nowrap;
}
.priority-high {
  background: #ffe9e9;
  color: #cf3434;
}
.activity {
  padding: 12px 0;
  border-bottom: 1px solid #eef1f5;
  font-size: 11px;
}
.activity small {
  display: block;
  color: #8995a8;
  margin-left: 15px;
  margin-top: 3px;
}
.filters {
  display: flex;
  gap: 10px;
  padding: 14px;
  margin-bottom: 14px;
}
.filters input,
.filters select {
  height: 38px;
  border: 1px solid #dfe5ee;
  border-radius: 7px;
  padding: 0 11px;
  background: #fff;
  color: #526078;
  min-width: 170px;
}
.ghost {
  background: transparent;
  border: 0;
  font-size: 18px;
  color: #708097;
  cursor: pointer;
}
.form {
  padding: 22px;
  display: grid;
  gap: 18px;
}
.form label {
  font-size: 12px;
  color: #526078;
  font-weight: 600;
}
.form input,
.form select,
.form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  border: 1px solid #dce3ed;
  border-radius: 7px;
  padding: 10px;
  font: inherit;
  font-size: 13px;
  background: #fff;
}
.form textarea {
  resize: vertical;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.section-title {
  font-size: 14px;
  font-weight: 700;
  padding-top: 5px;
  border-top: 1px solid #edf0f5;
}
.checks {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.checks label {
  font-weight: 500;
}
.checks input {
  display: inline;
  width: auto;
  margin-right: 6px;
}
.actions {
  display: flex;
  gap: 10px;
  border-top: 1px solid #edf0f5;
  padding-top: 18px;
}
.module-grid,
.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.module-card {
  padding: 18px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: start;
}
.module-icon {
  font-size: 25px;
}
.module-card h3,
.doc-grid h3 {
  margin: 0 0 5px;
  font-size: 14px;
}
.module-card p,
.doc-grid p {
  margin: 0 0 9px;
  color: #7a879a;
  font-size: 11px;
  line-height: 1.5;
}
.module-card small,
.doc-grid small {
  color: #8794a7;
  font-size: 10px;
}
.module-card a {
  font-size: 10px;
  color: #3474e4;
  text-decoration: none;
}
.kanban {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: start;
}
.kanban-col {
  background: #eef2f7;
  border-radius: 10px;
  padding: 12px;
  min-height: 360px;
}
.kanban-col h3 {
  font-size: 12px;
  margin: 4px 4px 12px;
}
.kanban-col h3 span {
  float: right;
  background: #fff;
  border-radius: 20px;
  padding: 3px 7px;
  color: #758197;
}
.idea {
  padding: 14px;
  margin-bottom: 10px;
}
.idea small {
  color: #8a96a9;
}
.idea b {
  display: block;
  margin: 7px 0;
  font-size: 12px;
}
.idea p {
  font-size: 10px;
  color: #77849a;
  margin: 0;
}
.doc-grid {
  grid-template-columns: repeat(3, 1fr);
}
.doc-grid .panel {
  min-height: 170px;
}
.doc-icon {
  font-size: 24px;
}
.doc-foot {
  border-top: 1px solid #eef1f5;
  margin-top: 14px;
  padding-top: 10px;
  color: #8a96a9;
  font-size: 10px;
  display: flex;
  justify-content: space-between;
}
.roadmap {
  display: grid;
  gap: 14px;
  max-width: 900px;
}
.roadmap-card {
  padding: 20px;
  display: flex;
  gap: 15px;
}
.phase-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #3478ed;
  margin-top: 5px;
}
.phase-main {
  flex: 1;
}
.phase-head {
  display: flex;
  justify-content: space-between;
}
.phase-head h2 {
  font-size: 14px;
  margin: 0;
}
.phase-main p {
  font-size: 11px;
  color: #7c899c;
}
.phase-main small {
  font-size: 10px;
  color: #8996a9;
}
.empty {
  text-align: center;
  padding: 65px 25px;
}
.empty-icon {
  font-size: 38px;
  margin-bottom: 8px;
}
.empty h2 {
  font-size: 18px;
}
.empty p {
  max-width: 600px;
  margin: 0 auto 24px;
  color: #7d899d;
  font-size: 12px;
  line-height: 1.6;
}
.empty-grid {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  color: #64738b;
  font-size: 11px;
}
.mobile-title {
  display: none;
}
@media (max-width:1150px) {
  .kpis {
    grid-template-columns: repeat(4, 1fr);
  }
  .module-grid,
  .doc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:800px) {
  .sidebar {
    width: 64px;
  }
  .brand div:not(.logo),
  .sidebar nav span,
  .version {
    display: none;
  }
  .main {
    margin-left: 64px;
  }
  .sidebar nav a {
    text-align: center;
  }
  .two,
  .bottom,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .kpis {
    grid-template-columns: repeat(2, 1fr);
  }
  .global-search {
    display: none;
  }
  .mobile-title {
    display: block;
    margin-right: auto;
  }
  .topbar {
    padding: 0 14px;
  }
  .page {
    padding: 16px;
  }
  .filters {
    flex-wrap: wrap;
  }
  .filters input,
  .filters select {
    flex: 1;
    min-width: 140px;
  }
  .module-grid,
  .doc-grid,
  .kanban {
    grid-template-columns: 1fr;
  }
  .checks {
    grid-template-columns: repeat(2, 1fr);
  }
  .priority {
    flex-direction: column;
    gap: 10px;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
