/* css/icons.css — SVG Icon Utility Classes */

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.icon img,
.icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Nav icons */
.nav-icon img {
  width: 20px;
  height: 20px;
}

/* Button icons */
.btn .icon {
  width: 16px;
  height: 16px;
}

/* Action bar icons */
.action-btn .icon {
  width: 14px;
  height: 14px;
}

/* Size variants */
.icon-sm { width: 14px; height: 14px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 24px; height: 24px; }
.icon-xl { width: 32px; height: 32px; }
