/**
 * CTT Icon Font System
 * 
 * This file defines the icon font face and individual icon classes.
 * Icons are used with the pattern: <i class="ctt-icon-{iconName}"></i>
 * 
 * Example usage:
 * <i class="ctt-icon-send"></i>
 * <i class="ctt-icon-download"></i>
 * <i class="ctt-icon-search"></i>
 */

/* Font Face Definition - Relative paths for Vite build processing */
@font-face {
  font-family: 'ctt-icons';
  src: url('../fonts/ctt-icons/ctt-icon-font.eot?v=9');
  src:
    url('../fonts/ctt-icons/ctt-icon-font.eot?v=9#iefix') format('embedded-opentype'),
    url('../fonts/ctt-icons/ctt-icon-font.woff?v=9') format('woff'),
    url('../fonts/ctt-icons/ctt-icon-font.ttf?v=9') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}