
/*
 * =================================
 *  Icon System Module - Styles
 * =================================
 *  - Font: Google Material Symbols Outlined
 *  - Theme: Dark
 */

.app-icon {
  /* --- Font Definition --- */
  font-family: 'Material Symbols Outlined';
  font-weight: normal; /* Corresponds to wght=400 */
  font-style: normal;
  font-size: 24px;      /* Corresponds to opsz=24 */
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;

  /* --- Font Rendering Optimizations --- */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';

  /* --- Dark Theme Palette --- */
  color: #E6E6E6; /* Primary Color: Off-white for high emphasis */

  /* --- Interactions --- */
  transition: color 0.2s ease-in-out;
}

/* --- Hover/Active State --- */
.app-icon:hover {
  color: #FFFFFF; /* Active Color: Pure white */
}
