/**
 * Custom Project Type Icons for EspoCRM
 * Module: IconType
 *
 * These icons are available in the native EspoCRM icon picker.
 * Usage: Add the class name (e.g., "icon-project-education") to any element.
 */

/* Base styles for all custom project icons */
[class^="icon-project-"],
[class*=" icon-project-"] {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    vertical-align: middle;
}

/* Education icon */
.icon-project-education {
    background-image: url('../img/icons/education.svg');
}

/* Electric pole icon */
.icon-project-electric-pole {
    background-image: url('../img/icons/electric-pole.svg');
}

/* Power line icon */
.icon-project-power-line {
    background-image: url('../img/icons/power-line.svg');
}

/* School icon */
.icon-project-school {
    background-image: url('../img/icons/school.svg');
}

/* Solar cell icon */
.icon-project-solar-cell {
    background-image: url('../img/icons/solar-cell.svg');
}

/* Sprout icon */
.icon-project-sprout {
    background-image: url('../img/icons/sprout.svg');
}

/* Sun energy icon */
.icon-project-sun-energy {
    background-image: url('../img/icons/sun-energy.svg');
}

/* Topography icon */
.icon-project-topography {
    background-image: url('../img/icons/topography.svg');
}

/* Tower icon */
.icon-project-tower {
    background-image: url('../img/icons/tower.svg');
}
