/* BizzFlo module icons — sidebar, settings, reports */
.mod-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--mod-bg, #E6FFF5);
  color: var(--mod-color, #00A870);
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mod-icon svg { width: 58%; height: 58%; display: block; }
.mod-icon-plain { background: transparent; box-shadow: none; border-radius: 0; }
.mod-icon-lg { width: 44px; height: 44px; border-radius: 12px; }
.mod-icon-lg svg { width: 52%; height: 52%; }
.mod-icon-xl { width: 56px; height: 56px; border-radius: 16px; }
.mod-icon-xl svg { width: 50%; height: 50%; }

.nav-item:hover .mod-icon { transform: scale(1.05); box-shadow: 0 4px 12px rgba(0,0,0,0.12); }
.nav-item.active .mod-icon { box-shadow: 0 0 0 2px rgba(255,255,255,0.35); }

.sidebar.collapsed .nav-item:hover .mod-icon { transform: scale(1.06); }
.sidebar.collapsed .nav-item.active .mod-icon {
  box-shadow: 0 0 0 2px rgba(255,255,255,0.55), 0 4px 14px rgba(0,0,0,0.18);
  transform: scale(1.04);
}
.sidebar .mod-icon { width: 32px; height: 32px; }
.sidebar.collapsed .mod-icon { width: 36px; height: 36px; border-radius: 11px; }

/* Module settings list */
.mod-row { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.mod-row:last-child { border-bottom: none; }
.mod-row-body { flex: 1; min-width: 0; }

/* Report cards */
.report-card-icon { margin-bottom: 12px; }

/* Public site brilliant icons */
.pub-mod-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--mod-bg); color: var(--mod-color);
  margin-bottom: 16px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pub-mod-icon svg { width: 28px; height: 28px; }
.pub-feature-card:hover .pub-mod-icon,
.pub-industry-card:hover .pub-mod-icon {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 14px 36px rgba(0, 168, 112, 0.15);
}
