body { font-size: 0.9rem; }

/* ── Login ──────────────────────────────── */
.login-card {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
}

/* ── Navbar ─────────────────────────────── */
.navbar { min-height: 56px; }
.navbar-brand img { height: 32px; }

/* ── Sidebar ─────────────────────────────── */
.sidebar {
  width: 230px;
  min-width: 230px;
  position: sticky;
  top: 56px;
  height: calc(100vh - 56px);
  overflow-y: auto;
  border-right: 1px solid rgba(0,0,0,.08);
}

.sector-item {
  border: none;
  background: transparent;
  color: #344054;
  font-size: 0.85rem;
  border-radius: 8px;
  transition: background 0.15s;
}
.sector-item:hover { background: #f2f4f7; }
.sector-item.active {
  background: #f0f4ff;
  color: #2c4ecf;
  font-weight: 600;
}

/* ── Link cards ──────────────────────────── */
.link-card {
  cursor: pointer;
  border: 1px solid rgba(0,0,0,.07) !important;
  border-radius: 10px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.link-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.10) !important;
  border-color: rgba(0,0,0,.13) !important;
}
.link-icon { display: block; line-height: 1; }
.link-desc {
  font-size: 0.72rem;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* ── Sector mobile pills ─────────────────── */
.sector-pill { white-space: nowrap; font-size: 0.8rem; }
.sector-pill.active {
  background-color: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
}

/* ── Empty state ─────────────────────────── */
.empty-state { color: #98a2b3; }

/* ── Admin table ─────────────────────────── */
.table > thead > tr > th {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6c757d;
  border-bottom-width: 1px;
}

.badge { font-size: 0.72rem; padding: 0.3em 0.65em; }
.card { border: 1px solid rgba(0,0,0,.07); border-radius: 10px; }

/* ── Color dots ──────────────────────────── */
.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
}

/* ── Icon preview ────────────────────────── */
.icon-preview-badge {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f2f4f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* ── Sector header badge ─────────────────── */
.sector-header-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
