/* Estilos base para SVGs */
svg {
    width: 1em;
    height: 1em;
}

/* Transição suave para hover */
svg path,
svg rect,
svg circle,
svg ellipse,
svg line,
svg polyline,
svg polygon,
svg text,
svg use {
    transition: fill 0.3s ease, stroke 0.3s ease;
}

/* Hover global para SVGs */
svg:hover {
    color: var(--e-global-color-primary, currentColor);
}
