/* src/styles.css */
:root {
  --indigo: #4338ca;
  --indigo-lt: #6366f1;
  --indigo-bg: #ede9fe;
  --indigo-border: #c7d2fe;
  --bg: #f4f5f7;
  --card: #fff;
  --border: #e5e7eb;
  --border2: #f3f4f6;
  --text: #111827;
  --text2: #374151;
  --muted: #6b7280;
  --muted2: #9ca3af;
  --green: #16a34a;
  --green-bg: #dcfce7;
  --green-border: #bbf7d0;
  --amber: #d97706;
  --amber-bg: #fef3c7;
  --red: #dc2626;
  --red-bg: #fee2e2;
  --blue: #1d4ed8;
  --blue-bg: #dbeafe;
  --purple: #6d28d9;
  --purple-bg: #ede9fe;
  --sidebar-w: 230px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
}
a {
  color: var(--indigo);
  text-decoration: none;
}
button,
input,
select,
textarea {
  font-family: inherit;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: #fff;
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  transition: all .15s;
  white-space: nowrap;
}
.btn:hover {
  background: #f9fafb;
}
.btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}
.btn-primary {
  background: var(--indigo);
  border-color: var(--indigo);
  color: #fff;
}
.btn-primary:hover {
  background: #3730a3;
  border-color: #3730a3;
}
.btn-green {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.btn-green:hover {
  background: #15803d;
}
.btn-red {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.btn-red:hover {
  background: #b91c1c;
}
.btn-sm {
  padding: 5px 10px;
  font-size: 11.5px;
}
.btn-xs {
  padding: 3px 8px;
  font-size: 11px;
}
.btn-icon {
  padding: 6px 8px;
}
.input,
.select-input {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  background: #fff;
  color: var(--text);
  transition: border-color .15s;
}
.input:focus,
.select-input:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, .1);
}
.label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.card-pad {
  padding: 20px 22px;
}
.table-wrap {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
thead tr {
  background: #f9fafb;
}
th {
  padding: 10px 14px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  border-bottom: 1.5px solid var(--border);
  white-space: nowrap;
}
td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border2);
  color: var(--text2);
  vertical-align: middle;
}
tbody tr:hover td {
  background: #faf9ff;
}
tbody tr:last-child td {
  border-bottom: none;
}
.badge {
  display: inline-block;
  padding: 3px 11px;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
.b-green {
  background: var(--green-bg);
  color: var(--green);
}
.b-amber {
  background: var(--amber-bg);
  color: var(--amber);
}
.b-red {
  background: var(--red-bg);
  color: var(--red);
}
.b-blue {
  background: var(--blue-bg);
  color: var(--blue);
}
.b-purple {
  background: var(--purple-bg);
  color: var(--purple);
}
.b-gray {
  background: #f3f4f6;
  color: var(--muted);
}
.b-indigo {
  background: var(--indigo-bg);
  color: var(--indigo);
}
.app-wrap {
  display: flex;
  min-height: 100vh;
}
.sidebar {
  width: var(--sidebar-w);
  height: 100vh;
  background: #fff;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #e5e7eb transparent;
  transition: width 0.25s ease;
}
.sidebar::-webkit-scrollbar {
  width: 4px;
}
.sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.sidebar::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 4px;
}
.sidebar::-webkit-scrollbar-thumb:hover {
  background: #c7d2fe;
}
.sidebar-brand {
  padding: 18px 16px 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-logo {
  width: 32px;
  height: 32px;
  background:
    linear-gradient(
      135deg,
      var(--indigo),
      var(--indigo-lt));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo span {
  color: #fff;
  font-weight: 900;
  font-size: 16px;
}
.brand-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}
.brand-name span {
  color: var(--indigo);
}
.sidebar-role {
  margin: 6px 16px 14px;
  background: var(--indigo-bg);
  color: var(--indigo);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  display: inline-block;
}
.nav-group {
  padding: 0 8px 8px;
}
.nav-group-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 8px 8px 4px;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--text2);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s;
  width: 100%;
  border: none;
  background: none;
  text-align: left;
}
.nav-item:hover {
  background: #f4f3ff;
  color: var(--indigo);
}
.nav-item.active {
  background: var(--indigo-bg);
  color: var(--indigo);
  font-weight: 600;
}
.nav-item .icon {
  font-size: 15px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.sidebar-footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: sticky;
  bottom: 0;
  background: #fff;
  z-index: 1;
}
.user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--indigo);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.user-meta {
  flex: 1;
  min-width: 0;
}
.user-name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user-email {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.logout-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 16px;
  padding: 4px;
  border-radius: 6px;
}
.logout-btn:hover {
  color: var(--red);
  background: var(--red-bg);
}
.main-content {
  margin-left: var(--sidebar-w);
  flex: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: margin-left 0.25s ease;
}
.topbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}
.breadcrumb {
  font-size: 11.5px;
  color: var(--muted);
}
.breadcrumb span {
  color: var(--indigo);
  font-weight: 600;
}
.topbar-user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.notif-btn {
  position: relative;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.notif-dot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  border: 1.5px solid #fff;
}
.topbar-name {
  font-size: 13px;
  font-weight: 600;
}
.topbar-role {
  font-size: 11px;
  color: var(--muted);
}
.page-body {
  padding: 24px 28px;
  flex: 1;
}
.page-hdr {
  margin-bottom: 20px;
}
.page-hdr .bc {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 4px;
}
.page-hdr .bc span {
  color: var(--indigo);
}
.page-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}
.page-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}
.page-actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}
.kpi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
}
.kpi-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--indigo);
  line-height: 1;
}
.kpi-label {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 4px;
}
.kpi-sub {
  font-size: 11.5px;
  color: var(--green);
  margin-top: 2px;
  font-weight: 500;
}
.tabs {
  display: flex;
  gap: 4px;
  background: #f3f4f6;
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 18px;
  width: fit-content;
}
.tab-btn {
  padding: 8px 16px;
  border-radius: 7px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: all .15s;
}
.tab-btn.active {
  background: #fff;
  color: var(--indigo);
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .08);
}
.search-bar {
  position: relative;
}
.search-bar .icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 14px;
  pointer-events: none;
}
.search-bar .input {
  padding-left: 36px;
}
.toolbar {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.skill-pill {
  display: inline-block;
  background: var(--indigo-bg);
  color: var(--indigo);
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 10px;
  margin: 1px 2px 1px 0;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-lg {
  max-width: 720px;
}
.modal-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}
.modal-title {
  font-size: 16px;
  font-weight: 700;
}
.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: var(--muted);
  padding: 2px 6px;
  border-radius: 6px;
}
.modal-close:hover {
  background: #f3f4f6;
}
.modal-body {
  padding: 20px 22px;
}
.modal-footer {
  padding: 14px 22px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.form-grid {
  display: grid;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1f2937;
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
  z-index: 9999;
  animation: slideUp .2s ease;
  max-width: 340px;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.kanban-wrap {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 16px;
  min-height: 400px;
}
.kanban-col {
  flex: 0 0 220px;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.kanban-col-hdr {
  padding: 12px 14px 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.kanban-col-hdr .count {
  background: var(--indigo-bg);
  color: var(--indigo);
  font-size: 11px;
  padding: 1px 7px;
  border-radius: 10px;
}
.kanban-cards {
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.kanban-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 12px;
  cursor: pointer;
  transition: box-shadow .15s;
}
.kanban-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}
.kanban-card .name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.kanban-card .role {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
}
.kanban-card .score {
  font-size: 11px;
  color: var(--indigo);
  font-weight: 700;
  margin-top: 6px;
}
.src-chip {
  display: inline-block;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 8px;
  background: #f3f4f6;
  color: var(--muted);
  font-weight: 500;
}
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 48px 24px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
}
.upload-zone:hover,
.upload-zone.drag-over {
  border-color: var(--indigo);
  background: var(--indigo-bg);
}
.upload-icon {
  font-size: 40px;
  margin-bottom: 12px;
}
.upload-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.upload-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.dot-green {
  background: var(--green);
}
.dot-amber {
  background: var(--amber);
}
.dot-red {
  background: var(--red);
}
.dot-blue {
  background: var(--blue);
}
.dot-gray {
  background: var(--muted2);
}
.flex-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.mt-4 {
  margin-top: 4px;
}
.mt-8 {
  margin-top: 8px;
}
.mt-12 {
  margin-top: 12px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-20 {
  margin-top: 20px;
}
.bold {
  font-weight: 700;
}
.text-muted {
  color: var(--muted);
}
.text-sm {
  font-size: 12px;
}
.text-xs {
  font-size: 11px;
}
.pipeline-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.pipeline-label {
  width: 110px;
  font-size: 12px;
  color: var(--text2);
}
.pipeline-track {
  flex: 1;
  height: 10px;
  background: #f3f4f6;
  border-radius: 6px;
  overflow: hidden;
}
.pipeline-fill {
  height: 100%;
  background: var(--indigo-lt);
  border-radius: 6px;
  transition: width .4s;
}
.pipeline-count {
  width: 30px;
  text-align: right;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.notif-panel-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #f9fafb;
  cursor: pointer;
  transition: background .12s;
}
.notif-panel-row:hover {
  background: #f0eeff;
}
.notif-panel-row.unread {
  background: #faf9ff;
}
.empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--muted);
}
.empty-state .icon {
  font-size: 40px;
  margin-bottom: 12px;
}
.empty-state .msg {
  font-size: 14px;
  font-weight: 500;
}
.empty-state .sub {
  font-size: 13px;
  margin-top: 4px;
}
.funnel-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 7px;
}
.funnel-label {
  width: 100px;
  font-size: 12px;
  color: var(--text2);
}
.funnel-bar {
  height: 9px;
  border-radius: 5px;
  min-width: 6px;
  transition: width .4s;
}
.funnel-count {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  width: 28px;
}
@media (max-width: 900px) {
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .kpi-grid {
    grid-template-columns: 1fr;
  }
  .form-row,
  .form-row-3 {
    grid-template-columns: 1fr;
  }
}

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